You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// If true, will time how long it takes for access to expire. On expiry, the <see cref="OnAccessTokenExpired"/> event fires.
33
34
/// </summary>
34
35
publicboolTimeAccessExpiry{get;set;}
35
36
37
+
publicProxyConfigProxyConfig{get;set;}
38
+
36
39
/// <param name="exchangeServerUri">The URI to an exchange server that will perform the key exchange.</param>
37
40
/// <param name="serverUri">The URI to host the server at that your exchange server should return the authorization code to by GET request. (e.g. http://localhost:4002)</param>
38
41
/// <param name="scope"></param>
39
42
/// <param name="state">Stating none will randomly generate a state parameter.</param>
40
43
/// <param name="htmlResponse">The HTML to respond with when the callback server (serverUri) is reached. The default value will close the window on arrival.</param>
/// The maximum amount of times to retry getting a token.
71
73
/// <para/>
@@ -85,26 +87,32 @@ public override string GetUri()
85
87
/// <param name="refreshToken">This needs to be defined if "grantType" is "refresh_token".</param>
86
88
/// <param name="currentRetries">Does not need to be defined. Used internally for retry attempt recursion.</param>
87
89
/// <returns>Attempts to return a full <see cref="Token"/>, but after retry attempts, may return a <see cref="Token"/> with no <see cref="Token.AccessToken"/>, or null.</returns>
0 commit comments