我是否有必要在 WCF 服务中的每个方法上编写 [OperationContract]?

发布于 2024-08-29 09:05:24 字数 373 浏览 5 评论 0原文

例如,这是正确的吗?

[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2024-09-05 09:05:24

您必须使用 [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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文