Show / Hide Table of Contents

Class AdunitsResource.CustomchannelsResource.ListRequest

List all custom channels which the specified ad unit belongs to.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<CustomChannels>
AdSenseBaseServiceRequest<CustomChannels>
AdunitsResource.CustomchannelsResource.ListRequest
Implements
IClientServiceRequest<CustomChannels>
IClientServiceRequest
Inherited Members
AdSenseBaseServiceRequest<CustomChannels>.Alt
AdSenseBaseServiceRequest<CustomChannels>.Fields
AdSenseBaseServiceRequest<CustomChannels>.Key
AdSenseBaseServiceRequest<CustomChannels>.OauthToken
AdSenseBaseServiceRequest<CustomChannels>.PrettyPrint
AdSenseBaseServiceRequest<CustomChannels>.QuotaUser
AdSenseBaseServiceRequest<CustomChannels>.UserIp
ClientServiceRequest<CustomChannels>.Execute()
ClientServiceRequest<CustomChannels>.ExecuteAsStream()
ClientServiceRequest<CustomChannels>.ExecuteAsync()
ClientServiceRequest<CustomChannels>.ExecuteAsync(CancellationToken)
ClientServiceRequest<CustomChannels>.ExecuteAsStreamAsync()
ClientServiceRequest<CustomChannels>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<CustomChannels>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<CustomChannels>.GenerateRequestUri()
ClientServiceRequest<CustomChannels>.GetBody()
ClientServiceRequest<CustomChannels>.GetDefaultETagAction(String)
ClientServiceRequest<CustomChannels>.ETagAction
ClientServiceRequest<CustomChannels>.ModifyRequest
ClientServiceRequest<CustomChannels>.RequestParameters
ClientServiceRequest<CustomChannels>.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<CustomChannels>, IClientServiceRequest<CustomChannels>, IClientServiceRequest

Constructors

ListRequest(IClientService, String, String)

Constructs a new List request.

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

Properties

AdClientId

Ad client which contains the ad unit.

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

AdUnitId

Ad unit for which to list custom channels.

Declaration
[RequestParameter("adUnitId", RequestParameterType.Path)]
public virtual string AdUnitId { 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.CustomChannels>.HttpMethod

MaxResults

The maximum number of custom channels 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.CustomChannels>.MethodName

PageToken

A continuation token, used to page through custom channels. 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.CustomChannels>.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.CustomChannels>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top