IXMLTypeMapper3 Interface

Provides access to members that convert to and from XML to native types.

Members

Name Description
Method FromBinary Converts a byte array to an XML byte array.
Method FromBoolean Converts a boolean to an XML boolean.
Method FromByte Converts a byte to an XML byte.
Method FromDate Converts a date to an XML date.
Method FromDouble Converts a double to an XML double.
Method FromFloat Converts a float to an XML float.
Method FromInt64 Converts an int64 to an XML integer.
Method FromInteger Converts a long to an XML integer.
Method FromShort Converts a short to an XML short.
Method FromUInteger Converts an unsigned long to an XML integer.
Method FromUShort Converts an unsigned short to an XML short.
Method ToBinary Converts an XML byte array to a byte array.
Method ToBoolean Converts an XML boolean to a boolean.
Method ToByte Converts an XML byte to a byte.
Method ToDate Converts an XML date to a date.
Method ToDouble Converts an XML double to a double.
Method ToFloat Converts an XML float to a float.
Method ToInt64 Converts an XML integer to an int64.
Method ToInteger Converts an XML integer to a long.
Method ToObject Creates an object based on XML type information.
Method ToShort Converts an XML short to a short.
Method ToUInteger Converts an XML integer to an unsigned long.
Method ToUShort Converts an XML short to an unsigned short.

IXMLTypeMapper3.FromUInteger Method

Converts an unsigned long to an XML integer.

Public Function FromUInteger ( _
    ByVal Value As Integer _
) As String
public string FromUInteger (
    uint Value
);

IXMLTypeMapper3.FromUShort Method

Converts an unsigned short to an XML short.

Public Function FromUShort ( _
    ByVal Value As ushort _
) As String
public string FromUShort (
    ushort Value
);

IXMLTypeMapper3.ToUInteger Method

Converts an XML integer to an unsigned long.

Public Function ToUInteger ( _
    ByVal Text As String _
) As Integer
public uint ToUInteger (
    string Text
);

IXMLTypeMapper3.ToUShort Method

Converts an XML short to an unsigned short.

Public Function ToUShort ( _
    ByVal Text As String _
) As ushort
public ushort ToUShort (
    string Text
);

Inherited Interfaces

Interfaces Description
IXMLTypeMapper2 Provides access to members that convert to and from XML to native types.
IXMLTypeMapper Provides access to members that convert to and from XML to native types.

Classes that implement IXMLTypeMapper3

Classes Description
XMLTypeMapper A type converter for XML and native types.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.