- Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathGraphClientOptions.cs
45 lines (41 loc) · 1.42 KB
/
GraphClientOptions.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
43
44
45
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespaceMicrosoft.Graph
{
/// <summary>
/// The options for setting up a given graph client
/// </summary>
publicclassGraphClientOptions
{
/// <summary>
/// The target version of the api endpoint we are targeting (v1 or beta)
/// </summary>
publicstringGraphServiceTargetVersion
{
get;set;
}
/// <summary>
/// The version of the service library in use. Should be in the format `x.x.x` (Semantic version)
/// </summary>
publicstringGraphServiceLibraryClientVersion
{
get;set;
}
/// <summary>
/// The version of the core library in use. Should be in the format `x.x.x` (Semantic version).
/// </summary>
publicstringGraphCoreClientVersion
{
get;set;
}
/// <summary>
/// The product prefix to use in setting the telemetry headers.
/// Will default to `graph-dotnet` if not set.
/// </summary>
publicstringGraphProductPrefix
{
get;set;
}
}
}