如何创建 WCF MessageFault
我看到有两种创建 MessageFault 的方法:
FaultException fe = new FaultException("error");
MessageFault f = fe.CreateMessageFault();
或者
FaultCode fc = new FaultCode("error");
MessageFault f = MessageFault.CreateFault(fc, "error");
两种方法有什么区别?有人优先吗?
I see two ways to create a MessageFault:
FaultException fe = new FaultException("error");
MessageFault f = fe.CreateMessageFault();
Or
FaultCode fc = new FaultCode("error");
MessageFault f = MessageFault.CreateFault(fc, "error");
What's the difference b/w two? Is anyone preferred?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建
MessageFault
的方法远不止于此。请参阅MessageFault
成员。所有这些都会创建
MessageFault
类的实例。该文档告诉您它们有何不同。There are many more ways to create a
MessageFault
than that. SeeMessageFault
members.All of these create an instance of the
MessageFault
class. The documentation tells you how they differ.