Documentation correction?
Posted: 13 Aug 2012, 18:03
Hi,
In this docs page:
http://docs2x.smartfoxserver.com/api-do ... 8c049a.htm
if indicated that you get the data from the response like this:
but that doesn't work for me in C# / Unity/ Smartfox 2X.
This does work:
Is that a mistake in the docs that should be fixed, or am I reading it wrong?
In this docs page:
http://docs2x.smartfoxserver.com/api-do ... 8c049a.htm
if indicated that you get the data from the response like this:
Code: Select all
ISFSObject responseParams = (SFSObject)evt.Params["data"];This does work:
Code: Select all
ISFSObject responseParams = (SFSObject)evt.Params["params"];