Using ServicePointManager  
Author Message
gln





PostPosted: Fri Sep 07 01:54:18 PDT 2007 Top

Dotnet >> Using ServicePointManager Is the object global? I would like to ignore ftp server certificate validity
making connection to it in one part of my application. Will it apply the
validation bypass to this thread, process or whole .net platform?

DotNet247  
 
 
Vadym





PostPosted: Fri Sep 07 01:54:18 PDT 2007 Top

Dotnet >> Using ServicePointManager Hello, valentin!

ServicePointManager has only static members.
So, it is global for AppDomain. If you have 1 AppDomain (the default one)
then it is global for the whole
.NET application.

--
With best regards, Vadym Stetsiak.
Blog: http://vadmyst.blogspot.com


You wrote on Thu, 6 Sep 2007 18:04:10 +0300:

vt> Is the object global? I would like to ignore ftp server certificate
vt> validity making connection to it in one part of my application.
vt> Will it apply the validation bypass to this thread, process or
vt> whole .net platform?