microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/sub-pr-338

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Bot.Core/Hosting/BotClientOptions.cs

20lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4namespace Microsoft.Teams.Bot.Core.Hosting;
5
6/// <summary>
7/// Options for configuring bot client HTTP clients.
8/// </summary>
9internal 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