In the XSockets Server API there is an example on how to get/set properties on the server controller using the JavaScript API
Get/Set properties from the client APITop
If you have a property with a public getter or setter you can access the getter/setter methods from the client API’s
public string MyProp {get;set;}
The property above can be retrieved and changed from the client API’s (both JavaScript and C#). Example on how to set a new value from JavaScript
conn.publish('set_MyProp',{value:'NewValue'});
See the client API’s for more information.
But there's no information whatsoever on the Client API's page
I'm having a hard-time figuring out what is the equivalent C# Client code for the JavaScript code conn.publish('set_MyProp',{value:'NewValue'});
Any help is immensely appreciated.
Well, I've found out the hard way, by trial an error, that this:
Is the equivalent code to:
Pay attention to the case of "value"!!! Don't capitalize the word!
UPDATE
I've created two extension methods which makes it very easy to get and set property values (there's also a
WaitForConnection
which is useful in somewhat synchronous scenarios like Unit Testing).Since XSockets is (very unfortunately) not open source, and documentation is minimal, I have to guess how things work, so my extension methods may not be as efficient and elegant as they could be if I was able to read the source code, and I may have been a little too "careful" with my approach for reading properties from the server... If anyone knows how to improve it, please, edit the answer or suggest it on the comments section:
Usage is a breeze:
You can skip the following, it is just a rant!
A few things made it difficult to nail it down from the beginning. There's no agreement between the JavaScript client and the C# client. So what you learn in one does not translate to the other technology. On my own multi-language client APIs I try to make all APIs behave and look very similar, if not identical, so code is almost portable. I've got an API that looks nearly identical in both JavaScript, C# and Java.
The differences that bothered me are:
publish
in JavaScript vsSend
in C#value, event
in C#,event, value
in JavaScriptNot a difference in itself, but if you use 'Value' in the C# example it won't work, you must use 'value'... I don't believe it should have been case sensitive...the reasoning for this is quite convincing. I'll quit quibbling then!