CredentialCache コンストラクタ
CredentialCache クラスの新しいインスタンスを作成します。
Public Sub New()
[C#]
public CredentialCache();
[C++]
public: CredentialCache();
[JScript]
public function CredentialCache();
解説
このコンストラクタは CredentialCache インスタンスを作成します。
使用例
[Visual Basic, C#, C++] 複数のセキュリティ資格情報で CredentialCache を初期化し、それらの資格情報を WebRequest で使用する例を次に示します。
Dim myCache As New CredentialCache()
myCache.Add(New Uri("https://www.contoso.com/"), "Basic", New NetworkCredential(UserName, SecurelyStoredPassword))
myCache.Add(New Uri("https://www.contoso.com/"), "Digest", New NetworkCredential(UserName, SecurelyStoredPassword, Domain))
wReq.Credentials = myCache
[C#]
CredentialCache myCache = new CredentialCache();
myCache.Add(new Uri("https://www.contoso.com/"),"Basic",new NetworkCredential(UserName,SecurelyStoredPassword));
myCache.Add(new Uri("https://www.contoso.com/"),"Digest", new NetworkCredential(UserName,SecurelyStoredPassword,Domain));
wReq.Credentials = myCache;
[C++]
CredentialCache* myCache = new CredentialCache();
myCache->Add(new Uri(S"https://www.contoso.com/"),S"Basic",new NetworkCredential(UserName,SecurelyStoredPassword));
myCache->Add(new Uri(S"https://www.contoso.com/"),S"Digest", new NetworkCredential(UserName,SecurelyStoredPassword,Domain));
wReq->Credentials = myCache;
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, Common Language Infrastructure (CLI) Standard