XMLSerializeHelperiXMLDeserializeT Method |
Deserializes supplied XML string to object
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public T iXMLDeserialize<T>(
string XMLStringToDeserialize
)
Public Function iXMLDeserialize(Of T) (
XMLStringToDeserialize As String
) As T
public:
generic<typename T>
T iXMLDeserialize(
String^ XMLStringToDeserialize
)
member iXMLDeserialize :
XMLStringToDeserialize : string -> 'T
Parameters
- XMLStringToDeserialize
- Type: SystemString
String to be deserialized
Type Parameters
- T
- The type to be deserialized
Return Value
Type:
TObject of supplied type, null (nothing) on failure
Remarks The "i" named functions are here to allow access to static members in COM applications. In .NET applications you can call static methods directly and don't need to instantiate this class.
See Also