- Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathFeatureFlag.cs
42 lines (40 loc) · 1.38 KB
/
FeatureFlag.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespaceMicrosoft.Graph
{
usingSystem;
/// <summary>
/// Feature Flags
/// </summary>
[Flags]
publicenumFeatureFlag
{
/// None set
None=0x00000000,
/// Redirect Handler
RedirectHandler=0x00000001,
/// Retry Handler
RetryHandler=0x00000002,
/// Auth Handler
AuthHandler=0x00000004,
/// Default Handler
DefaultHttpProvider=0x00000008,
/// Logging Handler
LoggingHandler=0x00000010,
/// Service Discovery Handler
ServiceDiscoveryHandler=0x00000020,
/// Compression Handler
CompressionHandler=0x00000040,
/// Connection Pool Manager
ConnectionPoolManager=0x00000080,
/// Long Running Operation Handler
LongRunningOperationHandler=0x00000100,
/// Batch Request Content Used
BatchRequestContext=0x00000200,
/// Page Iterator task Used
PageIteratorTask=0x00000400,
/// File Upload task Used
FileUploadTask=0x00000800
}
}