This function is part of the UserInfo Interface.
EOS_UserInfo_QueryUserInfoByExternalAccount is used to start an asynchronous query to retrieve user information by external accounts.
This can be useful for getting the EOS_EpicAccountId for external accounts.
Once the callback has been fired with a successful ResultCode, it is possible to call CopyUserInfo to receive an EOS_UserInfo containing the available information.
See Also
EOS_UserInfo, EOS_UserInfo_QueryUserInfoByExternalAccountOptions, EOS_UserInfo_OnQueryUserInfoByExternalAccountCallback
Parameters
UserInfo.UserInfoInterface.QueryUserInfoByExternalAccount
Parameter Type And Name
|
Usage Information
|
QueryUserInfoByExternalAccountOptions options
|
structure containing the input parameters
|
object clientData
|
arbitrary data that is passed back to you in the CompletionDelegate
|
OnQueryUserInfoByExternalAccountCallback completionDelegate
|
a callback that is fired when the async operation completes, either successfully or in error
|
This function is asynchronous; the EOS SDK guarantees that your callback (the CompletionDelegate
parameter) will run when the operation completes, regardless of whether it succeeds or fails. Use the void*
parameter to pass any contextual information the callback may need in order to react properly. Relevant information can be copied from the EOS SDK's cache while the callback function is running. You do not need to remove the callback function.
Because this function is asynchronous, it employs a callback of type EOS_UserInfo_OnQueryUserInfoByExternalAccountCallback to report the results of its operation.
Function prototype definition for callbacks passed to EOS_UserInfo_QueryUserInfo
Callback Parameters
UserInfo.OnQueryUserInfoByExternalAccountCallback
Parameter Type And Name
|
Usage Information
|
QueryUserInfoByExternalAccountCallbackInfo data
|
A EOS_UserInfo_QueryUserInfoByExternalAccountCallbackInfo containing the output information and result
|