ICredentialProvider 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
Use ConfigurationBotFrameworkAuthentication
instead to configure credentials.
CredentialProvider 接口。 此接口允许机器人提供其自己的有效 appId 和密码(而非)的实现。 这在多租户机器人的情况下非常有用,其中机器人可能需要调用服务来确定特定的 appid/密码对是否有效。
对于单租户机器人 (绝大多数) 简单的静态提供程序就足够了。
[System.Obsolete("Use `ConfigurationBotFrameworkAuthentication` instead to configure credentials.", false)]
public interface ICredentialProvider
[<System.Obsolete("Use `ConfigurationBotFrameworkAuthentication` instead to configure credentials.", false)>]
type ICredentialProvider = interface
Public Interface ICredentialProvider
- 派生
- 属性
方法
GetAppPasswordAsync(String) |
已过时.
获取给定机器人应用 ID 的应用密码。 |
IsAuthenticationDisabledAsync() |
已过时.
检查是否禁用了机器人身份验证。 |
IsValidAppIdAsync(String) |
已过时.
验证应用 ID。 |