本文整理汇总了C#中System.ServiceModel.Security.SecureConversationServiceCredential.SecurityStateEncoder属性的典型用法代码示例。如果您正苦于以下问题:C# SecureConversationServiceCredential.SecurityStateEncoder属性的具体用法?C# SecureConversationServiceCredential.SecurityStateEncoder怎么用?C# SecureConversationServiceCredential.SecurityStateEncoder使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了SecureConversationServiceCredential.SecurityStateEncoder属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Configure
static void Configure(ServiceHost serviceHost)
{
/*
* There are certain settings that cannot be configured via app.config.
* The security state encoder is one of them.
* Plug in a SecurityStateEncoder that uses the configured certificate
* to protect the security context token state.
*
* Note: You don't need a security state encoder for cookie mode. This was added to the
* sample to illustrate how you would plug in a custom security state encoder should
* your scenario require one.
* */
serviceHost.Credentials.SecureConversationAuthentication.SecurityStateEncoder =
new CertificateSecurityStateEncoder(serviceHost.Credentials.ServiceCertificate.Certificate);
开发者ID:.NET开发者,项目名称:System.ServiceModel.Security,代码行数:14,代码来源:SecureConversationServiceCredential.SecurityStateEncoder