Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/Error/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:46:03 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/error/properties/Data.htm --> | ||
{{Protocols/MSNP|section=Activities}} | {{Protocols/MSNP|section=Activities}} | ||
__NOTOC__= <a class="clsStd" href="../index.htm">Error</a>.Data Property = | __NOTOC__= <a class="clsStd" href="../index.htm">Error</a>.Data Property = |
Revision as of 22:46, 12 August 2022
<a class="clsStd" href="../index.htm">Error</a>.Data Property
This property returns the data of the transaction that failed. This property contains data whenever the OnDataError event fires.
VBScript Syntax
external.Error.Data
JavaScript Syntax
window.external.Error.Data
Parameter Value
A variant containing the data of the transaction that failed during SendData.
JavaScript Example
function Channel_OnDataError() { // Error during SendData; print the data that was not sent. var myRetry; myRetry = window.external.Channel.Error.Data; txtDebugOut.innerHTML="There was a SendData error, the data that was saved: " + myRetry; }
Remarks
This property contains data that should be inspected every time the OnDataError event occurs.