Show / Hide Table of Contents

Class GuideCategoriesResource.ListRequest

Returns a list of categories that can be associated with YouTube channels.

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

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

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

Properties

Hl

The hl parameter specifies the language that will be used for text values in the API response.

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.GuideCategoryListResponse>.HttpMethod

Id

The id parameter specifies a comma-separated list of the YouTube channel category ID(s) for the resource(s) that are being retrieved. In a guideCategory resource, the id property specifies the YouTube channel category ID.

Declaration
[RequestParameter("id", RequestParameterType.Query)]
public virtual string Id { get; set; }
Property Value
Type Description
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.GuideCategoryListResponse>.MethodName

Part

The part parameter specifies the guideCategory resource properties that the API response will include. Set the parameter value to snippet.

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

RegionCode

The regionCode parameter instructs the API to return the list of guide categories available in the specified country. The parameter value is an ISO 3166-1 alpha-2 country code.

Declaration
[RequestParameter("regionCode", RequestParameterType.Query)]
public virtual string RegionCode { 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.YouTube.v3.Data.GuideCategoryListResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top