This function is part of the Connect Interface.
Retrieve the equivalent external account mappings from a list of Product User IDs.
This will include data for each external account info found for the linked product IDs.
The values will be cached and retrievable via {GetProductUserIdMapping}, {CopyProductUserExternalAccountByIndex},
{CopyProductUserExternalAccountByAccountType} or {CopyProductUserExternalAccountByAccountId}.
See Also
{ExternalAccountInfo}, {GetProductUserExternalAccountCount}, {GetProductUserIdMapping}, {CopyProductUserExternalAccountByIndex}, {CopyProductUserExternalAccountByAccountType}, {CopyProductUserExternalAccountByAccountId}, {CopyProductUserInfo}
Parameters
Connect.ConnectInterface.QueryProductUserIdMappings
Parameter Type And Name
|
Usage Information
|
QueryProductUserIdMappingsOptions options
|
structure containing a list of Product User IDs to query for the external account representation.
|
object clientData
|
arbitrary data that is passed back to you in the CompletionDelegate.
|
OnQueryProductUserIdMappingsCallback completionDelegate
|
a callback that is fired when the query 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 object
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 Connect.OnQueryProductUserIdMappingsCallback to report the results of its operation.
Function prototype definition for callbacks passed to {ConnectInterface.QueryProductUserIdMappings}.
Callback Parameters
Connect.OnQueryProductUserIdMappingsCallback
Parameter Type And Name
|
Usage Information
|
QueryProductUserIdMappingsCallbackInfo data
|
A EOS_Connect_QueryProductUserIdMappingsCallbackInfo containing the output information and result.
|