In This Article

ItemSerializationEventArgs Class

Provides event arguments that are used for object serialization and deserialization events.

public class ItemSerializationEventArgs : EventArgs
Inheritance:
object EventArgs object

Constructors

ItemSerializationEventArgs(object, XmlObjectBase)

Initializes a new instance of the class.

public ItemSerializationEventArgs(object item, XmlObjectBase node)
Parameter Type Description
item object

The object that is represented by the serializable node.

node XmlObjectBase

The serializable XmlObjectBase that is used to represent the item.

Properties

Item

The object that is represented by the serializable Node.

public object Item { get; }

Property Value

object

Node

The serializable XmlObjectBase that is used to represent the Item.

public XmlObjectBase Node { get; }

Property Value

XmlObjectBase

Inherited Members

Extension Methods