| EAPUtilDeserialize Method  | 
 
            Deserialize a string to a simple class.
            Note that only public fields and public read/write properties are handled.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static Object Deserialize(
	string sXml,
	Type eType
)
Public Shared Function Deserialize ( 
	sXml As String,
	eType As Type
) As Object
Parameters
- sXml
- Type: SystemString
 The XML to deserialize.
- eType
- Type: SystemType
 The type that should be the result of the deserialization.
Return Value
Type: 
ObjectThe deserialized object of the specified type.
 See Also
See Also