Class RedirectReceivedEventArgs
Event arguments for the redirect event
Namespace: i5.Toolkit.Core.OpenIDConnectClient
Assembly: cs.temp.dll.dll
Syntax
public class RedirectReceivedEventArgs : EventArgs
Constructors
RedirectReceivedEventArgs(Dictionary<String, String>, String)
Creates a new instance of the redirect event arguments
Declaration
public RedirectReceivedEventArgs(Dictionary<string, string> requestParameters, string redirectUri)
Parameters
Type | Name | Description |
---|---|---|
Dictionary<String, String> | requestParameters | The parameters that were given in the redirect |
String | redirectUri | The URI to which the redirect lead |
Properties
RedirectParameters
The parameters that were given in the redirect
Declaration
public Dictionary<string, string> RedirectParameters { get; }
Property Value
Type | Description |
---|---|
Dictionary<String, String> |
RedirectUri
The URI to which the redirect lead
Declaration
public string RedirectUri { get; }
Property Value
Type | Description |
---|---|
String |