mscorlib(4.0.0.0) API with additions
ICredentialPolicy.cs
1 namespace System.Net
2 {
4  public interface ICredentialPolicy
5  {
13  bool ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule);
14  }
15 }
Makes a request to a Uniform Resource Identifier (URI). This is an abstract class.
Definition: WebRequest.cs:21
bool ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule)
Returns a T:System.Boolean that indicates whether the client's credentials are sent with a resource r...
Provides the base authentication interface for Web client authentication modules.
Defines the credential policy to be used for resource requests that are made using T:System....
Provides credentials for password-based authentication schemes such as basic, digest,...
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts...
Definition: Uri.cs:19