Verastream SDK .Net Reference
getCapturedData Method
Example 



Returns the currently captured data as a string. The data capture facility allows you to save all information being sent by the host communications layer to the presentation space for later retrieval as a byte array or a String. Depending on the type of terminal and type of host connection, this data may be in the 8-bit ASCII, 8-bit EBCDIC or 6-bit ALC character set.
Syntax
'Declaration
 
Public Function getCapturedData() As String
'Usage
 
Dim instance As ScreenUPG
Dim value As String
 
value = instance.getCapturedData()
public string getCapturedData()
public:
String^ getCapturedData(); 

Return Value

A string containing the data that is currently captured.
Remarks
Note that calling this method does not remove the data from the capture buffer.
Example
[C#] [VB]
string gcd = m_screen.getCapturedData();
Dim gcd As String
            
gcd = m_screen.getCapturedData
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also