Table of Contents

Class NodesDisconnectedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.WebAudio
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

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
EventArgs
NodesDisconnectedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.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

ContextId GraphObjectId
SourceId GraphObjectId
DestinationId GraphObjectId
SourceOutputIndex double?
DestinationInputIndex double?

Properties

ContextId

public GraphObjectId ContextId { get; init; }

Property Value

GraphObjectId

DestinationId

public GraphObjectId DestinationId { get; init; }

Property Value

GraphObjectId

DestinationInputIndex

public double? DestinationInputIndex { get; init; }

Property Value

double?

SourceId

public GraphObjectId SourceId { get; init; }

Property Value

GraphObjectId

SourceOutputIndex

public double? SourceOutputIndex { get; init; }

Property Value

double?