Class ChildNodeCountUpdatedEventArgs
Fired when Container's child node count has changed.
public sealed record ChildNodeCountUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ChildNodeCountUpdatedEventArgs>
- Inheritance
-
EventArgsChildNodeCountUpdatedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
ChildNodeCountUpdatedEventArgs(NodeId, long)
Fired when Container's child node count has changed.
public ChildNodeCountUpdatedEventArgs(NodeId NodeId, long ChildNodeCount)
Parameters
Properties
ChildNodeCount
New node count.
public long ChildNodeCount { get; init; }
Property Value
NodeId
Id of the node that has changed.
public NodeId NodeId { get; init; }