我是否有必要在 WCF 服务中的每个方法上编写 [OperationContract]?
例如,这是正确的吗?
[OperationContract]
bool IsHappy(string userID);
bool IsSad(string userID);
bool IsHungry(string userID);
这是 WCF ServiceContract 的有效操作主体吗?还是我必须这样做:
[OperationContract]
bool IsHappy(string userID);
[OperationContract]
bool IsSad(string userID);
[OperationContract]
bool IsHungry(string userID);
For example, is this correct?
[OperationContract]
bool IsHappy(string userID);
bool IsSad(string userID);
bool IsHungry(string userID);
Is that a valid body of operations for a WCF ServiceContract or do I have to do it this way:
[OperationContract]
bool IsHappy(string userID);
[OperationContract]
bool IsSad(string userID);
[OperationContract]
bool IsHungry(string userID);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
[OperationContract]
表示要从服务公开的每个方法。您可以在服务类中随意使用没有此属性的方法,但这些方法不会在服务元数据中公开,并且客户端无法访问。如果所有三个方法都是服务合同的一部分,那么所有三个方法都必须具有
[OperationContract]
属性 - 您的第二个示例是正确的。You must denote every method that you want to expose from the service with
[OperationContract]
. You are free to have methods without this attribute in your service class but those methods will not be exposed in the service metadata and will not be accessible to the client.If all three methods are part of the service contract then all three must have an
[OperationContract]
attribute - your second example is correct.