Show / Hide Table of Contents

Class AuthorizationCodeWebApp.AuthResult

AuthResult which contains the user's credentials if it was loaded successfully from the store. Otherwise it contains the redirect URI for the authorization server.

Inheritance
object
AuthorizationCodeWebApp.AuthResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Auth.OAuth2.Web
Assembly: Google.Apis.Auth.dll
Syntax
public class AuthorizationCodeWebApp.AuthResult

Properties

Credential

Gets or sets the user's credentials or null in case the end user needs to authorize.

Declaration
public UserCredential Credential { get; set; }
Property Value
Type Description
UserCredential

RedirectUri

Gets or sets the redirect URI to for the user to authorize against the authorization server or null in case the UserCredential was loaded from the data store.

Declaration
public string RedirectUri { get; set; }
Property Value
Type Description
string
In This Article
Back to top Generated by DocFX