Table of Contents

Class AuthRequiredEventArgs

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

Event arguments present when the AuthRequired event is raised.

public class AuthRequiredEventArgs : EventArgs
Inheritance
AuthRequiredEventArgs
Inherited Members

Constructors

AuthRequiredEventArgs(string, string)

Initializes a new instance of the AuthRequiredEventArgs type.

public AuthRequiredEventArgs(string requestId, string uri)

Parameters

requestId string

The request ID of the request raised the event.

uri string

The URI for which the event is raised.

Properties

RequestId

Gets the request ID of the request raising the event.

public string RequestId { get; }

Property Value

string

Uri

Gets the URI for which the event is raised.

public string Uri { get; }

Property Value

string