Class PeopleResource.SearchRequest
Shut down. See https://developers.google.com/+/api-shutdown for more details.
Inheritance
Inherited Members
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
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
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
Methods
InitParameters()
Initializes Search parameter list.
Declaration
protected override void InitParameters()