Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Channel/Properties/Data: Difference between revisions
Jump to navigation
Jump to search
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
||
Line 1: | Line 1: | ||
<!-- Generated @ 08/12/2022 23: | <!-- Generated @ 08/12/2022 23:45:59 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/channel/properties/Data.htm --> | ||
{{Protocols/MSNP|section=Activities}} | {{Protocols/MSNP|section=Activities}} | ||
__NOTOC__= <a class="clsStd" href="/techref/objectmodel/objects/channel/index.htm">Channel</a>.Data Property = | __NOTOC__= <a class="clsStd" href="/techref/objectmodel/objects/channel/index.htm">Channel</a>.Data Property = |
Revision as of 22:46, 12 August 2022
<a class="clsStd" href="/techref/objectmodel/objects/channel/index.htm">Channel</a>.Data Property
This property returns the data that has been received from the remote user's application instance. This property contains data whenever the OnDataReceived event fires.
VBScript Syntax
external.Channel.Data
JavaScript Syntax
window.external.Channel.Data
Property Value
A variant object containing the data received from the remote application.
JavaScript Example
function Channel_OnDataReceived() // This event is fired when data is received from the remote application using Channel.SendData. // Inspect the value of Channel.Data. { var myData; myData=window.external.Channel.Data; myGameTurn(myData); }
Remarks
This property contains data that should be inspected every time the OnDataReceived event occurs.