Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Net: Is there any other class inherited from ICredentials apart from NetworkCredential?

Tags:

.net

security

Is there any other class inherited from ICredentials in standard .Net libraries, apart from NetworkCredential? Probably, not only in System.Net namespace.

It looks like MSDN site page about ICredentials does not contain this information...

like image 257
moudrick Avatar asked Feb 18 '23 08:02

moudrick


1 Answers

The ones I can find are:

  • CredentialCache
  • NetworkCredential
  • SystemNetworkCredential (which is internal)
like image 124
Fredrik Mörk Avatar answered Feb 21 '23 17:02

Fredrik Mörk