ClientCredentials.SupportInteractive 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置指示是否允许系统在必要时交互式提示用户输入凭据。 例如,在中间层方案中,可能需要将其设置为 false
。
public:
property bool SupportInteractive { bool get(); void set(bool value); };
public bool SupportInteractive { get; set; }
member this.SupportInteractive : bool with get, set
Public Property SupportInteractive As Boolean
属性值
如果凭据支持交互模式,则为 true
;否则为 false
。 默认值为 true
。
示例
下面的代码演示如何设置此属性。
public void snippet27(CalculatorClient client)
{
client.ClientCredentials.SupportInteractive = false;
}
注解
此属性控制在配置凭据期间是否允许弹出用户界面。 目前发生的最常见情况是 CardSpace。