microsoft/healthcare-shared-components

Public

mirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Microsoft.Health.Client/Authentication/AuthenticationType.cs

15lines · 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
6namespace Microsoft.Health.Client.Authentication;
7
8public enum AuthenticationType
9{
10 None = 0,
11 ManagedIdentity = 1,
12 OAuth2ClientCredential = 2,
13 OAuth2UserPasswordCredential = 3,
14 OAuth2ClientCertificateCredential = 4,
15}
16