NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CredentialCache.Remove

Removes a NetworkCredential instance from the credential cache.

[Visual Basic]
Public Sub Remove( _
   ByVal URIprefix As String, _
   ByVal AuthType As String _
)
[C#]
public void Remove(
   string URIprefix,
   string AuthType
);
[C++]
public: void Remove(
   String* URIprefix,
   String* AuthType
);
[JScript]
public function Remove(
   URIprefix : String,
   AuthType : String
);

Parameters

URIprefix
The URI string that the credential applies to.
AuthType
The authentication scheme used by the host referred to in URI. Taken from the list of authentication types included in System.Net.AuthenticationTypes.

Return Value

true if the credential was successfully removed from the cache; otherwise, false.

See Also

CredentialCache Class | CredentialCache Members | System.Net Namespace