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

Deserializes raw XML 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 
DeserializeXmlToObject<T>(
	
string 
value,
	

DeserializationArguments 
arguments
)
Public 
Shared 
Function 
DeserializeXmlToObject(
Of T) ( _
	
value 
As 
String, _
	
arguments 
As 

DeserializationArguments _
) 
As T
public:
generic<
typename T>
static T 
DeserializeXmlToObject(
	
String^ 
value, 
	

DeserializationArguments 
arguments
)

Parameters

value
String
arguments
DeserializationArguments

Type Parameters

T
Type of the object to deserialize

Return Value

Deserialized object

See Also