17 строки
504 B
C#
17 строки
504 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.Bot.Connector.Authentication;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Microsoft.BotBuilderSamples
|
|
{
|
|
public class ConfigurationCredentialProvider : SimpleCredentialProvider
|
|
{
|
|
public ConfigurationCredentialProvider(IConfiguration configuration)
|
|
: base(configuration["MicrosoftAppId"], configuration["MicrosoftAppPassword"])
|
|
{
|
|
}
|
|
}
|
|
}
|