Class PendingAuthorisationEventArgs
Arguments for the PendingAuthorisation event.
Inherited Members
Namespace: Yort.Humm.InStore
Assembly: Yort.Humm.InStore.dll
Syntax
public sealed class PendingAuthorisationEventArgs : EventArgs
Constructors
| Improve this Doc View SourcePendingAuthorisationEventArgs(String, Int32, Dictionary<String, String>)
Initializes a new instance of the PendingAuthorisationEventArgs class.
Declaration
public PendingAuthorisationEventArgs(string clientReference, int retryDuration, Dictionary<string, string> trackingData)
Parameters
Type | Name | Description |
---|---|---|
String | clientReference | The client reference of the request associated with this event. |
Int32 | retryDuration | The minimum amount of time, in seconds, to wait before re-checking the request status. |
Dictionary<String, String> | trackingData | The tracking data associated with the original request, if any (may be null). |
Properties
| Improve this Doc View SourceClientReference
Returns the client reference of the request that caused this event.
Declaration
public string ClientReference { get; }
Property Value
Type | Description |
---|---|
String | The client reference of the ProcessAuthorisationRequest that is pending. |
RetryDuration
Returns the minimum number of seconds to wait until re-checking the request status.
Declaration
public int RetryDuration { get; }
Property Value
Type | Description |
---|---|
Int32 | The duration of the retry interval (in seconds). |
TrackingData
Returns the tracking data associated with the original request, if any (may be null).
Declaration
public Dictionary<string, string> TrackingData { get; }
Property Value
Type | Description |
---|---|
Dictionary<String, String> | The tracking data from the original ProcessAuthorisationRequest. |