我们可以从 wcf 服务调用类库吗

发布于 2024-12-02 19:49:54 字数 200 浏览 1 评论 0原文

我们可以从 wcf 服务调用类库吗...抱歉,如果问题是错误的.. 类中的方法

public class DocItem       
public DataSet GetRecord(int ID, DateTime startDate, DateTime endDate, string Type, string pocType)

Can we call class Library from a wcf service...sorry if the question is wrong..
the method in the class

public class DocItem       
public DataSet GetRecord(int ID, DateTime startDate, DateTime endDate, string Type, string pocType)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

溺孤伤于心 2024-12-09 19:49:54

如果类库支持以无人值守的方式运行,那么可以。如果您需要的功能会导致 UI 弹出,那么您可能需要尝试其他方法。

If the class library supports running in an unattended manner, then yes. If the functionality you require from it would cause UI to pop up, then you may have to try another approach.

请你别敷衍 2024-12-09 19:49:54

是的。只需向项目中的添加引用即可。然后添加 using 命名空间,您就可以实例化 DLL 中的对象。

Yes. Simply Add a Reference to the Library in your Project. Then add in the using namespace and you'll be able to instantiate the objects from the DLL.

同展鸳鸯锦 2024-12-09 19:49:54

类库只不过是您服务中的一个 DLL...为什么您不能呢?

A class library is going to be nothing more than a DLL in your service... why wouldn't you be able to?

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