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 ItemSerializationEventArgs 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

Gets the object that is represented by the serializable Node.

public object Item { get; }

Property Value

object:

The object that is represented by the serializable Node.

Node

Gets the serializable XmlObjectBase that is used to represent the Item.

public XmlObjectBase Node { get; }

Property Value

XmlObjectBase:

The serializable XmlObjectBase that is used to represent the Item.

Inherited Members