Class CommandLineAccessTokenProvider
An IAuthenticator implementation that expects an access token value from a provided -UNITY_CLOUD_ACCESS_TOKEN launch argument.
Inherited Members
Namespace: Unity.Cloud.Identity
Syntax
public class CommandLineAccessTokenProvider : IAuthenticator, IAccessTokenProvider, IAuthenticationStateProvider
Examples
Constructors
CommandLineAccessTokenProvider(IAuthenticationPlatformSupport)
Returns an IAccessTokenProvider implementation that expects an access token value from a provided -UNITY_CLOUD_ACCESS_TOKEN launch argument.
Declaration
public CommandLineAccessTokenProvider(IAuthenticationPlatformSupport authenticationPlatformSupport)
Parameters
| Type | Name | Description |
|---|---|---|
| IAuthenticationPlatformSupport | authenticationPlatformSupport | The IAuthenticationPlatformSupport that handles launch arguments. |
Fields
s_AccessTokenKeyName
Returns the expected key name in launch arguments that holds the access token value.
Declaration
public static readonly string s_AccessTokenKeyName
Field Value
| Type | Description |
|---|---|
| String |
Properties
AuthenticationState
Holds the current AuthenticationState.
Declaration
public AuthenticationState AuthenticationState { get; }
Property Value
| Type | Description |
|---|---|
| AuthenticationState |
Implements
Methods
GetAccessTokenAsync()
Declaration
public Task<string> GetAccessTokenAsync()
Returns
| Type | Description |
|---|---|
| Task<String> |
Implements
HasValidPreconditionsAsync()
Indicates if the CommandLineAccessTokenProvider running instance has detected command line injection of an access token.
Declaration
public Task<bool> HasValidPreconditionsAsync()
Returns
| Type | Description |
|---|---|
| Task<Boolean> | If the CommandLineAccessTokenProvider running instance has detected command line injection of an access token. |
Implements
InitializeAsync()
A task to initialize the AuthenticationState from either cache or direct injection value.
Declaration
public Task InitializeAsync()
Returns
| Type | Description |
|---|---|
| Task |
Implements
Events
AuthenticationStateChanged
Triggers when the AuthenticationState of the current user changes.
Declaration
public event Action<AuthenticationState> AuthenticationStateChanged
Event Type
| Type | Description |
|---|---|
| Action<AuthenticationState> |
Implements
Remarks
Subscribers of this event should restrict or allow access to available resources and features based on the returned value.