microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Client/AuthenticationType.cs
14lines · modecode
| 1 | // ------------------------------------------------------------------------------------------------- |
| 2 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. |
| 4 | // ------------------------------------------------------------------------------------------------- |
| 5 | |
| 6 | namespace Microsoft.Health.Client |
| 7 | { |
| 8 | public enum AuthenticationType |
| 9 | { |
| 10 | ManagedIdentity = 1, |
| 11 | OAuth2ClientCredential = 2, |
| 12 | OAuth2UserPasswordCredential = 3, |
| 13 | } |
| 14 | } |