Show / Hide Table of Contents

Class ChannelSectionsResource.ListRequest

Retrieves a list of resources, possibly filtered.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ChannelSectionListResponse>
YouTubeBaseServiceRequest<ChannelSectionListResponse>
ChannelSectionsResource.ListRequest
Implements
IClientServiceRequest<ChannelSectionListResponse>
IClientServiceRequest
Inherited Members
YouTubeBaseServiceRequest<ChannelSectionListResponse>.Xgafv
YouTubeBaseServiceRequest<ChannelSectionListResponse>.AccessToken
YouTubeBaseServiceRequest<ChannelSectionListResponse>.Alt
YouTubeBaseServiceRequest<ChannelSectionListResponse>.Callback
YouTubeBaseServiceRequest<ChannelSectionListResponse>.Fields
YouTubeBaseServiceRequest<ChannelSectionListResponse>.Key
YouTubeBaseServiceRequest<ChannelSectionListResponse>.OauthToken
YouTubeBaseServiceRequest<ChannelSectionListResponse>.PrettyPrint
YouTubeBaseServiceRequest<ChannelSectionListResponse>.QuotaUser
YouTubeBaseServiceRequest<ChannelSectionListResponse>.UploadType
YouTubeBaseServiceRequest<ChannelSectionListResponse>.UploadProtocol
ClientServiceRequest<ChannelSectionListResponse>.Execute()
ClientServiceRequest<ChannelSectionListResponse>.ExecuteAsStream()
ClientServiceRequest<ChannelSectionListResponse>.ExecuteAsync()
ClientServiceRequest<ChannelSectionListResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ChannelSectionListResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ChannelSectionListResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ChannelSectionListResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ChannelSectionListResponse>.GenerateRequestUri()
ClientServiceRequest<ChannelSectionListResponse>.GetBody()
ClientServiceRequest<ChannelSectionListResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ChannelSectionListResponse>.ETagAction
ClientServiceRequest<ChannelSectionListResponse>.ModifyRequest
ClientServiceRequest<ChannelSectionListResponse>.RequestParameters
ClientServiceRequest<ChannelSectionListResponse>.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.YouTube.v3
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class ListRequest : YouTubeBaseServiceRequest<ChannelSectionListResponse>, IClientServiceRequest<ChannelSectionListResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, Repeatable<String>)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, Repeatable<string> part)
Parameters
Type Name Description
IClientService service
Repeatable<System.String> part

Properties

ChannelId

Return the ChannelSections owned by the specified channel ID.

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

Hl

Return content in specified language

Declaration
[RequestParameter("hl", RequestParameterType.Query)]
public virtual string Hl { get; set; }
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.YouTube.v3.Data.ChannelSectionListResponse>.HttpMethod

Id

Return the ChannelSections with the given IDs for Stubby or Apiary.

Declaration
[RequestParameter("id", RequestParameterType.Query)]
public virtual Repeatable<string> Id { get; set; }
Property Value
Type Description
Repeatable<System.String>

MethodName

Gets the method name.

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

Mine

Return the ChannelSections owned by the authenticated user.

Declaration
[RequestParameter("mine", RequestParameterType.Query)]
public virtual bool? Mine { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

OnBehalfOfContentOwner

Note: This parameter is intended exclusively for YouTube content partners. The onBehalfOfContentOwner parameter indicates that the request's authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.

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

Part

The part parameter specifies a comma-separated list of one or more channelSection resource properties that the API response will include. The part names that you can include in the parameter value are id, snippet, and contentDetails. If the parameter identifies a property that contains child properties, the child properties will be included in the response. For example, in a channelSection resource, the snippet property contains other properties, such as a display title for the channelSection. If you set part=snippet, the API response will also contain all of those nested properties.

Declaration
[RequestParameter("part", RequestParameterType.Query)]
public virtual Repeatable<string> Part { get; }
Property Value
Type Description
Repeatable<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.YouTube.v3.Data.ChannelSectionListResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.YouTube.v3.YouTubeBaseServiceRequest<Google.Apis.YouTube.v3.Data.ChannelSectionListResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top