|
|
|||
|
The GetDbgDump method retrieves the entire contents of the internal debug buffer. The buffer is cleared upon return from this call. The debug buffer is allocated when the Open method is called. When debug mode is enabled, the CAS driver adds input and response taglists to the debug buffer when the Send method is called. In addition, an application can add text to the debug buffer by calling DumpString and DumpTagList methods.
|
|||
|
Parameters: |
|||
| None | |||
|
Return Values: |
|||
| Debug text output | |||
|
Example: |
|||
|
function OpenDebugWindow()
{ var DebugWin; DebugWin=window.open("","debug"); DebugWin.document.writeln("<font face='Courier' size='2'><br>"); DebugWin.document.writeln(CAS.GetDbgDump()); DebugWin.document.writeln("<br></font>"); DebugWin.focus(); } |
|||
|
See Also: |
|||
| CAS Open, CAS DumpString, CAS DumpTagList | |||
|
|