Show / Hide Table of Contents

Class PeopleResource.ListByActivityRequest

Shut down. See https://developers.google.com/+/api-shutdown for more details.

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

Constructors

ListByActivityRequest(IClientService, String, PeopleResource.ListByActivityRequest.CollectionEnum)

Constructs a new ListByActivity request.

Declaration
public ListByActivityRequest(IClientService service, string activityId, PeopleResource.ListByActivityRequest.CollectionEnum collection)
Parameters
Type Name Description
IClientService service
System.String activityId
PeopleResource.ListByActivityRequest.CollectionEnum collection

Properties

ActivityId

The ID of the activity to get the list of people for.

Declaration
[RequestParameter("activityId", RequestParameterType.Path)]
public virtual string ActivityId { get; }
Property Value
Type Description
System.String

Collection

The collection of people to list.

Declaration
[RequestParameter("collection", RequestParameterType.Path)]
public virtual PeopleResource.ListByActivityRequest.CollectionEnum Collection { get; }
Property Value
Type Description
PeopleResource.ListByActivityRequest.CollectionEnum

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Plus.v1.Data.PeopleFeed>.HttpMethod

MaxResults

The maximum number of people to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.

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.Plus.v1.Data.PeopleFeed>.MethodName

PageToken

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { 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.Plus.v1.Data.PeopleFeed>.RestPath

Methods

InitParameters()

Initializes ListByActivity parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Plus.v1.PlusBaseServiceRequest<Google.Apis.Plus.v1.Data.PeopleFeed>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top