Class AuthRequiredEventArgs
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
stringThe request ID of the request raised the event.
uri
stringThe 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
Uri
Gets the URI for which the event is raised.
public string Uri { get; }