Show / Hide Table of Contents

Class SheetsService.ScopeConstants

Available OAuth 2.0 scope constants for use with the Google Sheets API.

Inheritance
System.Object
SheetsService.ScopeConstants
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.Sheets.v4
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public static class ScopeConstants

Fields

Drive

See, edit, create, and delete all of your Google Drive files

Declaration
public const string Drive = "https://www.googleapis.com/auth/drive"
Field Value
Type Description
System.String

DriveFile

See, edit, create, and delete only the specific Google Drive files you use with this app

Declaration
public const string DriveFile = "https://www.googleapis.com/auth/drive.file"
Field Value
Type Description
System.String

DriveReadonly

See and download all your Google Drive files

Declaration
public const string DriveReadonly = "https://www.googleapis.com/auth/drive.readonly"
Field Value
Type Description
System.String

Spreadsheets

See, edit, create, and delete all your Google Sheets spreadsheets

Declaration
public const string Spreadsheets = "https://www.googleapis.com/auth/spreadsheets"
Field Value
Type Description
System.String

SpreadsheetsReadonly

See all your Google Sheets spreadsheets

Declaration
public const string SpreadsheetsReadonly = "https://www.googleapis.com/auth/spreadsheets.readonly"
Field Value
Type Description
System.String
In This Article
Back to top