[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. Will throw an exception if it fails

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
)
Public 
Shared 
Function 
DeserializeXmlToObject(
Of T) ( _
	
value 
As 
String _
) 
As T
public:
generic<
typename T>
static T 
DeserializeXmlToObject(
	
String^ 
value
)

Parameters

value
String

Type Parameters

T
Type of the object to deserialize

Return Value

Deserialized object

See Also