Class ActivitiesResource.ListRequest
Retrieves a list of resources, possibly filtered.
Inheritance
System.Object
ActivitiesResource.ListRequest
Inherited Members
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()
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class ListRequest : YouTubeBaseServiceRequest<ActivityListResponse>, IClientServiceRequest<ActivityListResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, Repeatable<String>)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, Repeatable<string> part)
Parameters
Properties
ChannelId
Declaration
[RequestParameter("channelId", RequestParameterType.Query)]
public virtual string ChannelId { get; set; }
Property Value
Type |
Description |
System.String |
|
Home
Declaration
[RequestParameter("home", RequestParameterType.Query)]
public virtual bool? Home { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
HttpMethod
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
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
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 Repeatable<string> Part { get; }
Property Value
PublishedAfter
Declaration
[RequestParameter("publishedAfter", RequestParameterType.Query)]
public virtual object PublishedAfter { get; set; }
Property Value
Type |
Description |
System.Object |
|
PublishedBefore
Declaration
[RequestParameter("publishedBefore", RequestParameterType.Query)]
public virtual object PublishedBefore { get; set; }
Property Value
Type |
Description |
System.Object |
|
RegionCode
Declaration
[RequestParameter("regionCode", RequestParameterType.Query)]
public virtual string RegionCode { get; set; }
Property Value
Type |
Description |
System.String |
|
RestPath
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