| UsersClientGetUserByTagsAsync Method |
Search API Users by tags
Namespace: Quickblox.Sdk.Modules.UsersModuleAssembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Task<HttpResponse<PagedResponse<UserResponse>>> GetUserByTagsAsync(
string[] tags,
Nullable<uint> page,
uint perPage
)
Public Function GetUserByTagsAsync (
tags As String(),
page As Nullable(Of UInteger),
perPage As UInteger
) As Task(Of HttpResponse(Of PagedResponse(Of UserResponse)))
public:
Task<HttpResponse<PagedResponse<UserResponse^>^>^>^ GetUserByTagsAsync(
array<String^>^ tags,
Nullable<unsigned int> page,
unsigned int perPage
)
member GetUserByTagsAsync :
tags : string[] *
page : Nullable<uint32> *
perPage : uint32 -> Task<HttpResponse<PagedResponse<UserResponse>>>
Parameters
- tags
- Type: SystemString
API User tag(s) The maximum number of tags per user: 5. - page
- Type: SystemNullableUInt32
Page number of the book of the results that you want to get. By default: 1 - perPage
- Type: SystemUInt32
The maximum number of results per page. Min: 1. Max: 100. By default: 10
Return Value
Type:
TaskHttpResponsePagedResponseUserResponse[Missing <returns> documentation for "M:Quickblox.Sdk.Modules.UsersModule.UsersClient.GetUserByTagsAsync(System.String[],System.Nullable{System.UInt32},System.UInt32)"]
See Also