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

Deserializes an object using BinaryFormatter

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

Syntax

                 
  C#     Visual Basic     Visual C++  
public 
static 
Object 
DeserializeObjectFromBinary(
	
byte[] 
rawObject,
	
Type 
objectType
)
Public 
Shared 
Function 
DeserializeObjectFromBinary ( _
	
rawObject 
As 
Byte(), _
	
objectType 
As 
Type _
) 
As 
Object
public:
static 
Object^ 
DeserializeObjectFromBinary(
	
array<
unsigned char>^ 
rawObject, 
	
Type^ 
objectType
)

Parameters

rawObject
array< Byte > [] () [] []
objectType
Type

Return Value

Deserialized object

See Also