Table of Contents

Class AcceptedEventArgs

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

Informs that port was successfully bound and got a specified connection id.

public sealed record AcceptedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<AcceptedEventArgs>
Inheritance
EventArgs
AcceptedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

AcceptedEventArgs(long, string)

Informs that port was successfully bound and got a specified connection id.

public AcceptedEventArgs(long Port, string ConnectionId)

Parameters

Port long

Port number that was successfully bound.

ConnectionId string

Connection id to be used.

Properties

ConnectionId

Connection id to be used.

public string ConnectionId { get; init; }

Property Value

string

Port

Port number that was successfully bound.

public long Port { get; init; }

Property Value

long