(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.]