Show / Hide Table of Contents

Class SpreadsheetsResource.ValuesResource.BatchClearByDataFilterRequest

Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the specified data filters will be cleared. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<BatchClearValuesByDataFilterResponse>
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>
SpreadsheetsResource.ValuesResource.BatchClearByDataFilterRequest
Implements
IClientServiceRequest<BatchClearValuesByDataFilterResponse>
IClientServiceRequest
Inherited Members
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.Xgafv
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.AccessToken
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.Alt
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.Callback
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.Fields
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.Key
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.OauthToken
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.PrettyPrint
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.QuotaUser
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.UploadType
SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>.UploadProtocol
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.Execute()
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ExecuteAsStream()
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ExecuteAsync()
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.GenerateRequestUri()
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.GetDefaultETagAction(String)
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ETagAction
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ModifyRequest
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.ValidateParameters
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.RequestParameters
ClientServiceRequest<BatchClearValuesByDataFilterResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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 BatchClearByDataFilterRequest : SheetsBaseServiceRequest<BatchClearValuesByDataFilterResponse>, IClientServiceRequest<BatchClearValuesByDataFilterResponse>, IClientServiceRequest

Constructors

BatchClearByDataFilterRequest(IClientService, BatchClearValuesByDataFilterRequest, String)

Constructs a new BatchClearByDataFilter request.

Declaration
public BatchClearByDataFilterRequest(IClientService service, BatchClearValuesByDataFilterRequest body, string spreadsheetId)
Parameters
Type Name Description
IClientService service
BatchClearValuesByDataFilterRequest body
System.String spreadsheetId

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Sheets.v4.Data.BatchClearValuesByDataFilterResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Sheets.v4.Data.BatchClearValuesByDataFilterResponse>.MethodName

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Sheets.v4.Data.BatchClearValuesByDataFilterResponse>.RestPath

SpreadsheetId

The ID of the spreadsheet to update.

Declaration
[RequestParameter("spreadsheetId", RequestParameterType.Path)]
public virtual string SpreadsheetId { get; }
Property Value
Type Description
System.String

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Sheets.v4.Data.BatchClearValuesByDataFilterResponse>.GetBody()

InitParameters()

Initializes BatchClearByDataFilter parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Sheets.v4.SheetsBaseServiceRequest<Google.Apis.Sheets.v4.Data.BatchClearValuesByDataFilterResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top