Class NodesDisconnectedEventArgs
Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected.
public sealed record NodesDisconnectedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<NodesDisconnectedEventArgs>
- Inheritance
-
EventArgsNodesDisconnectedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
NodesDisconnectedEventArgs(GraphObjectId, GraphObjectId, GraphObjectId, double?, double?)
Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected.
public NodesDisconnectedEventArgs(GraphObjectId ContextId, GraphObjectId SourceId, GraphObjectId DestinationId, double? SourceOutputIndex = null, double? DestinationInputIndex = null)
Parameters
ContextIdGraphObjectIdSourceIdGraphObjectIdDestinationIdGraphObjectIdSourceOutputIndexdouble?DestinationInputIndexdouble?
Properties
ContextId
public GraphObjectId ContextId { get; init; }
Property Value
DestinationId
public GraphObjectId DestinationId { get; init; }
Property Value
DestinationInputIndex
public double? DestinationInputIndex { get; init; }
Property Value
SourceId
public GraphObjectId SourceId { get; init; }
Property Value
SourceOutputIndex
public double? SourceOutputIndex { get; init; }