Table of Contents

Class DirectTCPSocketOpenedEventArgs

Namespace
OpenQA.Selenium.DevTools.V148.Network
Assembly
Selenium.WebDriver.dll

Fired when direct_socket.TCPSocket connection is opened.

public sealed class DirectTCPSocketOpenedEventArgs : EventArgs
Inheritance
DirectTCPSocketOpenedEventArgs
Inherited Members

Properties

Identifier

Gets or sets the identifier

[JsonPropertyName("identifier")]
public string Identifier { get; set; }

Property Value

string

LocalAddr

Gets or sets the localAddr

[JsonPropertyName("localAddr")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? LocalAddr { get; set; }

Property Value

string

LocalPort

Expected to be unsigned integer.

[JsonPropertyName("localPort")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? LocalPort { get; set; }

Property Value

long?

RemoteAddr

Gets or sets the remoteAddr

[JsonPropertyName("remoteAddr")]
public string RemoteAddr { get; set; }

Property Value

string

RemotePort

Expected to be unsigned integer.

[JsonPropertyName("remotePort")]
public long RemotePort { get; set; }

Property Value

long

Timestamp

Gets or sets the timestamp

[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }

Property Value

double