[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Deserializes a raw byte stream to an object

Namespace:  Microsoft.ConfigurationManagement.Messaging.Framework
Assembly:  Microsoft.ConfigurationManagement.Messaging(in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

                 
  C#     Visual Basic     Visual C++  
public 
static T 
DeserializeRawToStructure<T>(
	
byte[] 
data
)
Public 
Shared 
Function 
DeserializeRawToStructure(
Of T) ( _
	
data 
As 
Byte() _
) 
As T
public:
generic<
typename T>
static T 
DeserializeRawToStructure(
	
array<
unsigned char>^ 
data
)

Parameters

data
array< Byte > [] () [] []

Type Parameters

T
Type of the object to deserialize

Return Value

Deserialized object

See Also