Table of Contents

Interface IWebSocketConnectionInfo

Namespace
OpenQA.Selenium.Safari.Internal
Assembly
WebDriver.dll

Provides an interface describing information about the WebSocket connection.

public interface IWebSocketConnectionInfo

Properties

ClientIPAddress

Gets the IP address of the client for the connection.

string ClientIPAddress { get; }

Property Value

string

Cookies

Gets the collection of cookies for the connection.

IDictionary<string, string> Cookies { get; }

Property Value

IDictionary<string, string>

Host

Gets the host for the connection.

string Host { get; }

Property Value

string

Origin

Gets the origin of the connection.

string Origin { get; }

Property Value

string

Path

Gets the path for the connection.

string Path { get; }

Property Value

string

SubProtocol

Gets the sub-protocol of the connection.

string SubProtocol { get; }

Property Value

string