Class RedirectReceivedEventArgs
Event arguments for the redirect event
Inheritance
object
RedirectReceivedEventArgs
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 |
---|---|---|
System.Collections.Generic.Dictionary<TKey, TValue><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 |
---|---|
System.Collections.Generic.Dictionary<TKey, TValue><string, string> |
RedirectUri
The URI to which the redirect lead
Declaration
public string RedirectUri { get; }
Property Value
Type | Description |
---|---|
string |