NetworkCredential.Domain プロパティ
アセンブリ: System (system.dll 内)

Dim instance As NetworkCredential Dim value As String value = instance.Domain instance.Domain = value
資格情報に関連付けられたドメイン名。


Domain プロパティを使用して、資格情報に関連付けるドメインを設定するコード例を次に示します。
' Create an empty instance of the NetworkCredential class. Dim myCredentials As New NetworkCredential("", "", "") myCredentials.Domain = domain myCredentials.UserName = username myCredentials.Password = passwd ' Create a WebRequest with the specified URL. Dim myWebRequest As WebRequest = WebRequest.Create(url) myWebRequest.Credentials = myCredentials Console.WriteLine(ControlChars.Cr + ControlChars.Cr + "User Credentials:- Domain : {0} , UserName : {1} , Password : {2}", myCredentials.Domain, myCredentials.UserName, myCredentials.Password) ' Send the request and wait for a response. Console.WriteLine(ControlChars.Cr + ControlChars.Cr + "Request to Url is sent.Waiting for response...Please wait ...") Dim myWebResponse As WebResponse = myWebRequest.GetResponse() ' Process the response. Console.WriteLine(ControlChars.Cr + "Response received sucessfully") ' Release the resources of the response object. myWebResponse.Close()
// Create an empty instance of the NetworkCredential class. NetworkCredential myCredentials = new NetworkCredential("" ,"",""); myCredentials.Domain = domain; myCredentials.UserName = username; myCredentials.Password = passwd; // Create a WebRequest with the specified URL. WebRequest myWebRequest = WebRequest.Create(url); myWebRequest.Credentials = myCredentials; Console.WriteLine("\n\nUser Credentials:- Domain : {0} , UserName : {1} , Password : {2}",myCredentials.Domain,myCredentials.UserName,myCredentials.Password); // Send the request and wait for a response. Console.WriteLine("\n\nRequest to Url is sent.Waiting for response...Please wait ..."); WebResponse myWebResponse = myWebRequest.GetResponse(); // Process the response. Console.WriteLine("\nResponse received sucessfully"); // Release the resources of the response object. myWebResponse.Close();
// Create an empty instance of the NetworkCredential class. NetworkCredential^ myCredentials = gcnew NetworkCredential( "","","" ); myCredentials->Domain = domain; myCredentials->UserName = username; myCredentials->Password = passwd; // Create a WebRequest with the specified URL. WebRequest^ myWebRequest = WebRequest::Create( url ); myWebRequest->Credentials = myCredentials; Console::WriteLine( "\n\nUser Credentials:- Domain : {0} , UserName : {1} , Password : {2}", myCredentials->Domain, myCredentials->UserName, myCredentials->Password ); // Send the request and wait for a response. Console::WriteLine( "\n\nRequest to Url is sent.Waiting for response...Please wait ..." ); WebResponse^ myWebResponse = myWebRequest->GetResponse(); // Process the response. Console::WriteLine( "\nResponse received sucessfully" ); // Release the resources of the response object. myWebResponse->Close();
// Create an empty instance of the NetworkCredential class. NetworkCredential myCredentials = new NetworkCredential("", "", ""); myCredentials.set_Domain(domain); myCredentials.set_UserName(userName); myCredentials.set_Password(passwd); // Create a WebRequest with the specified URL. WebRequest myWebRequest = WebRequest.Create(url); myWebRequest.set_Credentials(myCredentials); Console.WriteLine("\n\nUser Credentials:- Domain : {0} , " + "UserName : {1} , Password : {2}", myCredentials.get_Domain(), myCredentials.get_UserName(), myCredentials.get_Password()); // Send the request and wait for a response. Console.WriteLine("\n\nRequest to Url is sent.Waiting for " + "response...Please wait..."); WebResponse myWebResponse = myWebRequest.GetResponse(); // Process the response. Console.WriteLine("\nResponse received sucessfully"); // Release the resources of the response object. myWebResponse.Close();


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からNetworkCredential.Domain プロパティを検索する場合は、下記のリンクをクリックしてください。

- NetworkCredential.Domain プロパティのページへのリンク