Show / Hide Table of Contents

Class AccountsResource.AdclientsResource.ListRequest

List all ad clients in the specified account.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<AdClients>
AdSenseBaseServiceRequest<AdClients>
AccountsResource.AdclientsResource.ListRequest
Implements
IClientServiceRequest<AdClients>
IClientServiceRequest
Inherited Members
AdSenseBaseServiceRequest<AdClients>.Alt
AdSenseBaseServiceRequest<AdClients>.Fields
AdSenseBaseServiceRequest<AdClients>.Key
AdSenseBaseServiceRequest<AdClients>.OauthToken
AdSenseBaseServiceRequest<AdClients>.PrettyPrint
AdSenseBaseServiceRequest<AdClients>.QuotaUser
AdSenseBaseServiceRequest<AdClients>.UserIp
ClientServiceRequest<AdClients>.Execute()
ClientServiceRequest<AdClients>.ExecuteAsStream()
ClientServiceRequest<AdClients>.ExecuteAsync()
ClientServiceRequest<AdClients>.ExecuteAsync(CancellationToken)
ClientServiceRequest<AdClients>.ExecuteAsStreamAsync()
ClientServiceRequest<AdClients>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<AdClients>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<AdClients>.GenerateRequestUri()
ClientServiceRequest<AdClients>.GetBody()
ClientServiceRequest<AdClients>.GetDefaultETagAction(String)
ClientServiceRequest<AdClients>.ETagAction
ClientServiceRequest<AdClients>.ModifyRequest
ClientServiceRequest<AdClients>.RequestParameters
ClientServiceRequest<AdClients>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
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.AdSense.v1_4
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class ListRequest : AdSenseBaseServiceRequest<AdClients>, IClientServiceRequest<AdClients>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string accountId)
Parameters
Type Name Description
IClientService service
System.String accountId

Properties

AccountId

Account for which to list ad clients.

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

HttpMethod

Gets the HTTP method.

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

MaxResults

The maximum number of ad clients to include in the response, used for paging.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual int? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MethodName

Gets the method name.

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

PageToken

A continuation token, used to page through ad clients. To retrieve the next page, set this parameter to the value of "nextPageToken" from the previous response.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

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

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.AdSense.v1_4.AdSenseBaseServiceRequest<Google.Apis.AdSense.v1_4.Data.AdClients>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top