| UsersClientGetUserByFullNameAsync Method |
Gets the full name of the user by.
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>>> GetUserByFullNameAsync(
string fullName,
Nullable<uint> page,
Nullable<uint> perPage,
CancellationToken token = null
)
Public Function GetUserByFullNameAsync (
fullName As String,
page As Nullable(Of UInteger),
perPage As Nullable(Of UInteger),
Optional token As CancellationToken = Nothing
) As Task(Of HttpResponse(Of PagedResponse(Of UserResponse)))
public:
Task<HttpResponse<PagedResponse<UserResponse^>^>^>^ GetUserByFullNameAsync(
String^ fullName,
Nullable<unsigned int> page,
Nullable<unsigned int> perPage,
CancellationToken token = nullptr
)
member GetUserByFullNameAsync :
fullName : string *
page : Nullable<uint32> *
perPage : Nullable<uint32> *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token null
*)
-> Task<HttpResponse<PagedResponse<UserResponse>>>
Parameters
- fullName
- Type: SystemString
API User full name - page
- Type: SystemNullableUInt32
Page number of the book of the results that you want to get. By default: 1 - perPage
- Type: SystemNullableUInt32
The maximum number of results per page. Min: 1. Max: 100. By default: 10 - token (Optional)
- Type: System.ThreadingCancellationToken
[Missing <param name="token"/> documentation for "M:Quickblox.Sdk.Modules.UsersModule.UsersClient.GetUserByFullNameAsync(System.String,System.Nullable{System.UInt32},System.Nullable{System.UInt32},System.Threading.CancellationToken)"]
Return Value
Type:
TaskHttpResponsePagedResponseUserResponse[Missing <returns> documentation for "M:Quickblox.Sdk.Modules.UsersModule.UsersClient.GetUserByFullNameAsync(System.String,System.Nullable{System.UInt32},System.Nullable{System.UInt32},System.Threading.CancellationToken)"]
See Also