Search
SerializeTagEventArgs.Representation Property
See Also
 





Gets or sets the XmlElement representing the root element in the XML tree of the tag object being serialized/deserialized.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public XmlElement Representation { get; set; }

Visual Basic  Copy Code

Public Property Representation As XmlElement

 Property Value

An instance of the .NET XmlElement class representing the node in the XML document, containing the tag representation.

 Remarks

When serializing tags use this XML element as a root of the tag representation by adding child elements to it. When deserializing the tag use this XML element as a root of the tag representation by reading child elements from it.

 See Also