本文介绍了使用消息安全性和MessageContract的wsHttpBinding的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

据我所知,通过WSHttpbinding,我们可以按照下面的代码片段所述设置消息级别的安全性

As per my knowledge, through WSHttpbinding we can set the message level security as mentioned in below code snippet


WSHttpBinding b = new WSHttpBinding();
b.Security.Mode = SecurityMode.Message;


推荐答案


这篇关于使用消息安全性和MessageContract的wsHttpBinding的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 17:27