IssuedTokenClientCredential.DefaultKeyEntropyMode 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 SecurityKeyEntropyMode 的默认值。
public:
property System::ServiceModel::Security::SecurityKeyEntropyMode DefaultKeyEntropyMode { System::ServiceModel::Security::SecurityKeyEntropyMode get(); void set(System::ServiceModel::Security::SecurityKeyEntropyMode value); };
public System.ServiceModel.Security.SecurityKeyEntropyMode DefaultKeyEntropyMode { get; set; }
member this.DefaultKeyEntropyMode : System.ServiceModel.Security.SecurityKeyEntropyMode with get, set
Public Property DefaultKeyEntropyMode As SecurityKeyEntropyMode
属性值
SecurityKeyEntropyMode 的值。 默认值为 CombinedEntropy。
例外
试图设置只读凭据。set
示例
此代码演示如何设置此属性。
itcc.DefaultKeyEntropyMode = SecurityKeyEntropyMode.ServerEntropy;
itcc.DefaultKeyEntropyMode = SecurityKeyEntropyMode.ServerEntropy
注解
当客户端与安全令牌服务进行 WS 信任交换以获取已颁发的令牌时,它有时必须与安全令牌服务交换密钥平均信息量以获得一个共享的对称密钥。 安全令牌服务通常指定要在其绑定中使用的平均信息量交换机制。 如果未在安全令牌服务的绑定中指定这样的机制,则使用 DefaultKeyEntropyMode
值与安全令牌服务交换平均信息量。