Delegate GetOtherUserInformation
- Namespace
- The.Components
- Assembly
- Instagile.dll
Invoked during user registration to attach some additional user information to the request.
public delegate Task<Dictionary<string, string>> GetOtherUserInformation(string username, CancellationToken cancellationToken)
Parameters
usernamestringThe username in the registration request.
cancellationTokenCancellationTokenA cancellation token.
Returns
- Task<Dictionary<string, string>>
- Invoked during user registration to attach some additional user information to the request.
Remarks
Can be provided to GetOtherUserInformation to attach information when executing the RPC on the backend, or can be provided to some login handlers to attach some information from the client side.