Struct SessionConfiguration
Account information and domain to associate an RemoteRenderingClient instance with.
struct Microsoft::Azure::RemoteRendering::SessionConfiguration
Fields
AccountDomain
Domain that will be used for account authentication for the Azure Remote Rendering service.
The domain is of the form [region].mixedreality.azure.com. [region] should be set to the location of the Azure Remote Rendering account. For example, eastus.mixedreality.azure.com or westeurope.mixedreality.azure.com. Legacy mixedreality.azure.com authentication domain is being phased out.
std::string AccountDomain{};
RemoteRenderingDomain
Domain that will be used to generate sessions for the Azure Remote Rendering service.
The domain is of the form [region].mixedreality.azure.com. [region] should be selected based on the region closest to the user. For example, westus2.mixedreality.azure.com or westeurope.mixedreality.azure.com.
std::string RemoteRenderingDomain{};
AccountId
The ID of the account that's being used with the Azure Remote Rendering service.
std::string AccountId{};
AccountKey
The key of the account that's being used with the Azure Remote Rendering service.
Only one of AccountKey, AccessToken or AuthenticationToken needs to be set.
std::string AccountKey{};
AccessToken
An access token for the account that's being used with the Azure Remote Rendering service.
Only one of AccountKey, AccessToken or AuthenticationToken needs to be set.
std::string AccessToken{};
AuthenticationToken
An authentication token for Azure Active Directory (AAD).
Only one of AccountKey, AccessToken or AuthenticationToken needs to be set.
std::string AuthenticationToken{};