Interface IMutationNameEvent
- Namespace
- SharpVectors.Dom.Events
- Assembly
- SharpVectors.Core.dll
The IMutationNameEvent interface provides specific contextual information associated with Mutation name event types.
public interface IMutationNameEvent
Remarks
Note: To create an instance of the
IMutationNameEvent interface,
use the feature string "MutationNameEvent"
as the value of the
input parameter used with the
CreateEvent method of the
IDocumentEvent interface.
Properties
- PrevNamespaceUri
The previous value of the RelatedNode's namespace URI.
- PrevNodeName
The previous value of the RelatedNode's nodeName.
Methods
- InitMutationNameEvent(string, bool, bool, INode, string, string)
The InitMutationNameEvent method is used to initialize the value of a IMutationNameEvent created using the IDocumentEvent.CreateEvent method. This method may only be called before the IMutationNameEvent has been dispatched via the IEventTarget.DispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.
- InitMutationNameEventNs(string, string, bool, bool, INode, string, string)
The InitMutationNameEventNs method is used to initialize the value of a IMutationNameEvent created using the IDocumentEvent.CreateEvent method. This method may only be called before the IMutationNameEvent has been dispatched via the IEventTarget.DispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.