Class AttributeModifiedEventArgs
Fired when Element's attribute is modified.
public sealed record AttributeModifiedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<AttributeModifiedEventArgs>
- Inheritance
-
EventArgsAttributeModifiedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
AttributeModifiedEventArgs(NodeId, string, string)
Fired when Element's attribute is modified.
public AttributeModifiedEventArgs(NodeId NodeId, string Name, string Value)
Parameters
NodeIdNodeIdId of the node that has changed.
NamestringAttribute name.
ValuestringAttribute value.
Properties
Name
Attribute name.
public string Name { get; init; }
Property Value
NodeId
Id of the node that has changed.
public NodeId NodeId { get; init; }
Property Value
Value
Attribute value.
public string Value { get; init; }