Interface IAccessTokenProvider
This interface abstracts the Task of returning the string value of the user access token to get authenticated on cloud endpoints.
Namespace: Unity.Cloud.Common
Syntax
public interface IAccessTokenProvider
Methods
GetAccessTokenAsync()
Abstract a Task that results in the string value of user access token when completed.
Declaration
Task<string> GetAccessTokenAsync()
Returns
Type | Description |
---|---|
Task<String> | Returns a Task that results in the string value of user access token when completed. |