Show / Hide Table of Contents

Class SpreadsheetsResource.DeveloperMetadataResource

The "developerMetadata" collection of methods.

Inheritance
System.Object
SpreadsheetsResource.DeveloperMetadataResource
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 class DeveloperMetadataResource

Constructors

DeveloperMetadataResource(IClientService)

Constructs a new resource.

Declaration
public DeveloperMetadataResource(IClientService service)
Parameters
Type Name Description
Google.Apis.Services.IClientService service

Methods

Get(String, Int32)

Returns the developer metadata with the specified ID. The caller must specify the spreadsheet ID and the developer metadata's unique metadataId.

Declaration
public virtual SpreadsheetsResource.DeveloperMetadataResource.GetRequest Get(string spreadsheetId, int metadataId)
Parameters
Type Name Description
System.String spreadsheetId

The ID of the spreadsheet to retrieve metadata from.

System.Int32 metadataId

The ID of the developer metadata to retrieve.

Returns
Type Description
SpreadsheetsResource.DeveloperMetadataResource.GetRequest

Search(SearchDeveloperMetadataRequest, String)

Returns all developer metadata matching the specified DataFilter. If the provided DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries selected by it. If the DataFilter represents a location in a spreadsheet, this will return all developer metadata associated with locations intersecting that region.

Declaration
public virtual SpreadsheetsResource.DeveloperMetadataResource.SearchRequest Search(SearchDeveloperMetadataRequest body, string spreadsheetId)
Parameters
Type Name Description
SearchDeveloperMetadataRequest body

The body of the request.

System.String spreadsheetId

The ID of the spreadsheet to retrieve metadata from.

Returns
Type Description
SpreadsheetsResource.DeveloperMetadataResource.SearchRequest
In This Article
Back to top