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



Status message type to send.
null or byte[] of status message detail if required.
Sends a status message with option detail to screen.
Syntax
'Declaration
 
Public Overloads Sub SendStatus( _
   ByVal type As Integer, _
   Optional ByRef detail As Byte() _
) 
'Usage
 
Dim instance As ScreenUPG
Dim type As Integer
Dim detail As Byte()
 
instance.SendStatus(type, detail)
public void SendStatus( 
   int type,
   ref byte[] detail
)
public:
void SendStatus( 
   int type,
   array<byte>% detail
) 

Parameters

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

Return Value

The status of the operation.
Remarks
.NET applications should call SendStatus(int, sbyte[]).
Example
[VB]
Dim detail As Byte()
Dim type As Long
            
'TODO: Fill in type and detail
type = 42
ReDim detail(4)
detail(0) = 0
detail(1) = 1
detail(2) = 2
detail(3) = 3
m_screen.SendStatus type, detail
            
'Or if no detail is required
m_screen.SendStatus type
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