microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/src/Microsoft.Teams.Bot.Core/Hosting/BotClientOptions.cs
20lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | namespace Microsoft.Teams.Bot.Core.Hosting; |
| 5 | |
| 6 | /// <summary> |
| 7 | /// Options for configuring bot client HTTP clients. |
| 8 | /// </summary> |
| 9 | internal sealed class BotClientOptions |
| 10 | { |
| 11 | /// <summary> |
| 12 | /// Gets or sets the scope for bot authentication. |
| 13 | /// </summary> |
| 14 | public string Scope { get; set; } = "https://api.botframework.com/.default"; |
| 15 | |
| 16 | /// <summary> |
| 17 | /// Gets or sets the configuration section name. |
| 18 | /// </summary> |
| 19 | public string SectionName { get; set; } = "AzureAd"; |
| 20 | } |
| 21 | |