Show / Hide Table of Contents

Class ActivitiesResource.ListRequest

Returns a list of channel activity events that match the request criteria. For example, you can retrieve events associated with a particular channel, events associated with the user's subscriptions and Google+ friends, or the YouTube home page feed, which is customized for each user.

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

ChannelId

The channelId parameter specifies a unique YouTube channel ID. The API will then return a list of that channel's activities.

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

Home

Set this parameter's value to true to retrieve the activity feed that displays on the YouTube home page for the currently authenticated user.

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

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

Mine

Set this parameter's value to true to retrieve a feed of the authenticated user's activities.

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

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 a comma-separated list of one or more activity resource properties that the API response will include.

If the parameter identifies a property that contains child properties, the child properties will be included in the response. For example, in an activity resource, the snippet property contains other properties that identify the type of activity, a display title for the activity, and so forth. If you set part=snippet, the API response will also contain all of those nested properties.

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

PublishedAfter

The publishedAfter parameter specifies the earliest date and time that an activity could have occurred for that activity to be included in the API response. If the parameter value specifies a day, but not a time, then any activities that occurred that day will be included in the result set. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

Declaration
[RequestParameter("publishedAfter", RequestParameterType.Query)]
public virtual DateTime? PublishedAfter { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

PublishedBefore

The publishedBefore parameter specifies the date and time before which an activity must have occurred for that activity to be included in the API response. If the parameter value specifies a day, but not a time, then any activities that occurred that day will be excluded from the result set. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

Declaration
[RequestParameter("publishedBefore", RequestParameterType.Query)]
public virtual DateTime? PublishedBefore { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

RegionCode

The regionCode parameter instructs the API to return results for the specified country. The parameter value is an ISO 3166-1 alpha-2 country code. YouTube uses this value when the authorized user's previous activity on YouTube does not provide enough information to generate the activity feed.

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

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top