- Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathGraphRequestContext.cs
38 lines (34 loc) · 1015 Bytes
/
GraphRequestContext.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
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespaceMicrosoft.Graph
{
usingSystem.Threading;
/// <summary>
/// The graph request context class
/// </summary>
publicclassGraphRequestContext
{
/// <summary>
/// A ClientRequestId property
/// </summary>
publicstringClientRequestId
{
get;set;
}
/// <summary>
/// A CancellationToken property
/// </summary>
publicCancellationTokenCancellationToken
{
get;set;
}
/// <summary>
/// A FeatureUsage property
/// </summary>
publicFeatureFlagFeatureUsage
{
get;set;
}
}
}