Using ServicePointManager

  • Thread starter Thread starter valentin tihomirov
  • Start date Start date
V

valentin tihomirov

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?
 
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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top