Verastream SDK .Net Reference
SendStatus(Int32,SByte[]) Method
Example 



Status message type to send.
null or sbyte[] of status message detail if required.
Sends a status message with option detail to screen.
Syntax
'Declaration
 
Public Overloads Function SendStatus( _
   ByVal type As Integer, _
   ByVal detail() As SByte _
) As Integer
'Usage
 
Dim instance As ScreenUPG
Dim type As Integer
Dim detail() As SByte
Dim value As Integer
 
value = instance.SendStatus(type, detail)
public int SendStatus( 
   int type,
   sbyte[] detail
)
public:
int SendStatus( 
   int type,
   array<sbyte>^ detail
) 

Parameters

type
Status message type to send.
detail
null or sbyte[] of status message detail if required.

Return Value

The status of the operation.
Example
[C#]
sbyte[] detail = new sbyte[4] {0, 1, 2, 4};
int type = 42;
            
// TODO: Fill in type and data in sbyte array
m_screen.SendStatus(type, detail);
            
// Or if no detail is required
m_screen.SendStatus(type, null);
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