| RtspMessage Constructor (Byte, Int32) | 
            Creates a RtspMessage from the given bytes
            
 
Namespace: Ozeki.CameraAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntaxpublic RtspMessage(
	byte[] bytes,
	int offset = 0
)
Public Sub New ( 
	bytes As Byte(),
	Optional offset As Integer = 0
)
public:
RtspMessage(
	array<unsigned char>^ bytes, 
	int offset = 0
)
new : 
        bytes : byte[] * 
        ?offset : int 
(* Defaults:
        let _offset = defaultArg offset 0
*)
-> RtspMessageParameters
- bytes
 - Type: SystemByte
The byte array to create the RtspMessage from - offset (Optional)
 - Type: SystemInt32
The offset within the bytes to start creating the message 
See Also