RMS SDK for C++  0.2.1
A client library for using Microsoft RMS from Linux.
AuthorityType.h
1 /*
2  * ======================================================================
3  * Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
4  * Licensed under the MIT License.
5  * See LICENSE.md in the project root for license information.
6  * ======================================================================
7 */
8 
9 #ifndef AUTHORITYTYPE
10 #define AUTHORITYTYPE
11 
12 namespace rmsauth {
13 
14 enum class AuthorityType
15 {
16  AAD = 0,
17  ADFS
18 };
19 
20 } // namespace rmsauth {
21 
22 #endif // AUTHORITYTYPE
23 
Definition: AcquireTokenForClientHandler.h:14