SerializableList

Base class for collection of T, where T is a class that implements IXMLSerialize.


Constructors

NameDescription
SerializableList<T>Default constructor provided for an automatic deserialization by the ArcObjects. If you use it, you also must set NamespaceURI property to a correct value.
SerializableList<T>(String)Default constructor provided for an automatic deserialization by the ArcObjects. If you use it, you also must set NamespaceURI property to a correct value.

SerializableList<T> Constructor

Default constructor provided for an automatic deserialization by the ArcObjects. If you use it, you also must set NamespaceURI property to a correct value.

Use dark colors for code blocksCopy
1
public SerializableList()

SerializableList<T>(String) Constructor

SerializableList constructor.

Use dark colors for code blocksCopy
1
public SerializableList(string namespaceURI)
ParameterDescription
namespaceURIXML namespace URI.

Properties

PropertyProperty valueDescription
SerializableList<T>.NamespaceURIStringNamespace URI. For example, http://examples.esri.com/schemas/MySOAPSOE/1.0

Methods

NameDescription
SerializableList<T>.Deserialize(IXMLSerializeData)Deserialize method converts XML to list.
SerializableList<T>.Serialize(IXMLSerializeData)Serialize method converts list to XML.

SerializableList<T>.Deserialize(IXMLSerializeData) Method

Deserialize method converts XML to list.

Use dark colors for code blocksCopy
1
public void Deserialize(IXMLSerializeData data)
ParameterDescription
dataData to be deseralized into a list. See IXMLSerializeData.

SerializableList<T>.Serialize(IXMLSerializeData) Method

Serialize method converts list to XML. XML typename is set to 'ArrayOf'+itemType. Example: ArrayOfString.

Use dark colors for code blocksCopy
1
public void Serialize(IXMLSerializeData data)
ParameterDescription
dataData that the list will be serialized into. See IXMLSerializeData.

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