I have the following code:
ServicePointManager.Expect100Continue = false;
on my main windows form frmMain_Load
event. I have many forms and classes where different web services are called but these are always called after completion of frmMain_Load
event.
So, ServicePointManager.Expect100Continue
will remain as set in all web service calls in all forms and classes? or do I have to set it to false
on every web service call?
It is .NET 2.0 desktop application in C#.
Note: I am sorry I posted such a dumb question. I can check in debugger by setting a watch on that value.