Table of Contents

Class StandardHttpRequestReceivedEventArgs

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

Provides arguments for handling events associated with connections to the server.

public class StandardHttpRequestReceivedEventArgs : EventArgs
Inheritance
StandardHttpRequestReceivedEventArgs
Inherited Members

Constructors

StandardHttpRequestReceivedEventArgs(IWebSocketConnection)

Initializes a new instance of the StandardHttpRequestReceivedEventArgs class.

public StandardHttpRequestReceivedEventArgs(IWebSocketConnection connection)

Parameters

connection IWebSocketConnection

The IWebSocketConnection representing the connection to the client.

Properties

Connection

Gets the connection to the client.

public IWebSocketConnection Connection { get; }

Property Value

IWebSocketConnection

Handled

Gets or sets a value indicating whether to the event was processed.

public bool Handled { get; set; }

Property Value

bool