Show / Hide Table of Contents

Class GoogleClientSecrets

OAuth 2.0 client secrets model as specified in https://cloud.google.com/console/.

Inheritance
System.Object
GoogleClientSecrets
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Auth.OAuth2
Assembly: Google.Apis.Auth.dll
Syntax
public sealed class GoogleClientSecrets

Properties

Secrets

Gets the client secrets which contains the client identifier and client secret.

Declaration
public ClientSecrets Secrets { get; }
Property Value
Type Description
ClientSecrets

Methods

Load(Stream)

Loads the Google client secret from the input stream.

Declaration
public static GoogleClientSecrets Load(Stream stream)
Parameters
Type Name Description
System.IO.Stream stream
Returns
Type Description
GoogleClientSecrets
Back to top