Class AuthRequiredEventArgs
Issued when the domain is enabled with handleAuthRequests set to true. The request is paused until client responds with continueWithAuth.
public sealed class AuthRequiredEventArgs : EventArgs
- Inheritance
-
AuthRequiredEventArgs
- Inherited Members
Properties
AuthChallenge
Details of the Authorization Challenge encountered. If this is set, client should respond with continueRequest that contains AuthChallengeResponse.
[JsonPropertyName("authChallenge")]
public AuthChallenge AuthChallenge { get; set; }
Property Value
FrameId
The id of the frame that initiated the request.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
Request
The details of the request.
[JsonPropertyName("request")]
public Request Request { get; set; }
Property Value
RequestId
Each request the page makes will have a unique id.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }
Property Value
ResourceType
How the requested resource will be used.
[JsonPropertyName("resourceType")]
public ResourceType ResourceType { get; set; }