Show / Hide Table of Contents

Class PeopleResource.SearchRequest

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

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<PeopleFeed>
PlusBaseServiceRequest<PeopleFeed>
PeopleResource.SearchRequest
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 SearchRequest : PlusBaseServiceRequest<PeopleFeed>, IClientServiceRequest<PeopleFeed>, IClientServiceRequest

Constructors

SearchRequest(IClientService, String)

Constructs a new Search request.

Declaration
public SearchRequest(IClientService service, string query)
Parameters
Type Name Description
IClientService service
System.String query

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

Language

Specify the preferred language to search with. See search language codes for available values.

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

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. This token can be of any length.

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

Query

Specify a query string for full text search of public text in all profiles.

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

Methods

InitParameters()

Initializes Search 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