Show / Hide Table of Contents

Class MembersResource.ListRequest

Retrieves a list of members that match the request criteria for a channel.

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

FilterByMemberChannelId

Comma separated list of channel IDs. Only data about members that are part of this list will be included in the response.

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

HasAccessToLevel

Filter members in the results set to the ones that have access to a level.

Declaration
[RequestParameter("hasAccessToLevel", RequestParameterType.Query)]
public virtual string HasAccessToLevel { 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.MemberListResponse>.HttpMethod

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

Mode

Parameter that specifies which channel members to return.

Declaration
[RequestParameter("mode", RequestParameterType.Query)]
public virtual MembersResource.ListRequest.ModeEnum? Mode { get; set; }
Property Value
Type Description
System.Nullable<MembersResource.ListRequest.ModeEnum>

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 member resource parts that the API response will include. Set the parameter value to snippet.

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.MemberListResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top