DataDOMEvent.Operation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the type of action that is applied to an XML Document Object Model (DOM) node during a data validation event.
public:
property System::String ^ Operation { System::String ^ get(); };
public string Operation { get; }
member this.Operation : string
Public ReadOnly Property Operation As String
Property Value
Examples
In the following example, the Operation property of the DataDOMEventObject object is used to check the type of action that is occurring to avoid multiple notifications for updates made to node values:
public void item_OnAfterChange(DataDOMEvent e)
{
if (!e.IsUndoRedo && e.<span class="label">Operation</span> == "Delete"
&& e.Site.nodeName == "item" &&
e.Source.nodeName == "item")
{
Calculate();
}
}
Remarks
The values that the Operation property returns include Insert, Update, and Delete.