我应该使用“使用”吗? 在我的 SitkaSoapServiceClient 上?
(这与 Microsoft 的 SitkaSoapService 相关,位于 https://database.windows.net/soap 的服务参考中/v1/)
我正在使用 SitkaSoapServiceClient 通过 SOAP 访问我的 SQL Data Services 数据库。
每次使用这个代理类时都应该使用“using”语句吗? 或者它是否在内部以安全的方式进行自己的连接处理?
即我需要说:
using (SitkaSoapServiceClient proxy = GetProxy())
proxy.Update(scope, entity);
...或者可以安全地说:
GetProxy().Update(scope, entity);
[其中 GetProxy() 返回 SitkaSoapServiceClient 对象。]
(This relates to Microsoft's SitkaSoapService, in the service reference at https://database.windows.net/soap/v1/)
I'm using SitkaSoapServiceClient to access my SQL Data Services database by SOAP.
Should I use a "using" statement every time I use this proxy class? Or does it do its own connection handling in a safe way internally?
I.e. do I need to say:
using (SitkaSoapServiceClient proxy = GetProxy())
proxy.Update(scope, entity);
... or is it safe to say:
GetProxy().Update(scope, entity);
[where GetProxy() returns a SitkaSoapServiceClient object.]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
代理类代码包装在 using 语句中时是否可以编译? 如果是这样,它实现了 IDisposable,我会使用它。
编辑:如果不执行任何操作,调用 Dispose() 应该会产生很少的开销,并且如果类的设计者稍后决定分配非托管资源,您将免受泄漏。
Does the proxy class code compile when wrapped in a using statement? If so, it implements
IDisposable
and I'd use it.EDIT: calling Dispose() should incur little overhead if it does nothing, and if the designer of the class decides at a later date to allocate unmanaged resources you will be protected from a leak.
当类实现 IDisposable 时,您应该始终使用
using
,因为该类的作者告诉您它包含一些应该释放的资源。You should always use
using
when the class implements IDisposable, because the author of the class tells you that it contains some resources that should be freed.