Show / Hide Table of Contents

Class LiveChatModeratorsResource.ListRequest

Lists moderators for a live chat.

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

Constructors

ListRequest(IClientService, String, String)

Constructs a new List request.

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

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.YouTube.v3.Data.LiveChatModeratorListResponse>.HttpMethod

LiveChatId

The liveChatId parameter specifies the YouTube live chat for which the API should return moderators.

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

MaxResults

The maxResults parameter specifies the maximum number of items that should be returned in the result set.

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

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.LiveChatModeratorListResponse>.MethodName

PageToken

The pageToken parameter identifies a specific page in the result set that should be returned. In an API response, the nextPageToken and prevPageToken properties identify other pages that could be retrieved.

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

Part

The part parameter specifies the liveChatModerator resource parts that the API response will include. Supported values are id and snippet.

Declaration
[RequestParameter("part", RequestParameterType.Query)]
public virtual string Part { get; }
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.LiveChatModeratorListResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top