다음을 통해 공유


WebClient.UseDefaultCredentials 속성

정의

DefaultCredentials 요청과 함께 전송되는지 여부를 제어하는 Boolean 값을 가져오거나 설정합니다.

public:
 property bool UseDefaultCredentials { bool get(); void set(bool value); };
public bool UseDefaultCredentials { get; set; }
member this.UseDefaultCredentials : bool with get, set
Public Property UseDefaultCredentials As Boolean

속성 값

기본 자격 증명이 사용되는지 true. 그렇지 않으면 false. 기본값은 false.

예제

다음 코드 예제에서는이 속성을 설정 하는 방법을 보여 줍니다.

// Sample call: UploadFileInBackground3("http://www.contoso.com/fileUpload.aspx", "data.txt")
void UploadFileInBackground3( String^ address, String^ fileName )
{

   WebClient^ client = gcnew WebClient;
   Uri ^uri = gcnew Uri(address);

   client->UseDefaultCredentials = true;

   client->UploadFileCompleted += gcnew UploadFileCompletedEventHandler( UploadFileCallback2 );
   client->UploadFileAsync( uri, fileName );
   Console::WriteLine( "File upload started." );
}

// Sample call: UploadFileInBackground3("http://www.contoso.com/fileUpload.aspx", "data.txt")
public static void UploadFileInBackground3(string address, string fileName)
{
    WebClient client = new WebClient();

    Uri uri = new Uri(address);

    client.UseDefaultCredentials = true;
    client.UploadFileCompleted += new UploadFileCompletedEventHandler(UploadFileCallback2);
    client.UploadFileAsync(uri, fileName);
    Console.WriteLine("File upload started.");
}
'  Sample call: UploadFileInBackground3("http:' www.contoso.com/fileUpload.aspx", "data.txt")
Public Shared Sub UploadFileInBackground3(ByVal address As String, ByVal fileName As String)

    Dim client As WebClient = New WebClient()
                Dim uri as Uri =  New Uri(address)
    client.UseDefaultCredentials = True
    AddHandler client.UploadFileCompleted, AddressOf UploadFileCallback2
    client.UploadFileAsync(uri, fileName)
    Console.WriteLine("File upload started.")
End Sub

설명

주의

WebRequest, HttpWebRequest, ServicePointWebClient 사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.

WebClient 개체의 요청이 서버에서 요청하는 경우 현재 로그온한 사용자의 기본 자격 증명을 사용하여 인증해야 하는 경우 이 속성을 true 설정합니다. 클라이언트 애플리케이션의 경우 대부분의 시나리오에서 원하는 동작입니다. 이 속성을 사용하는 대신 ASP.NET 애플리케이션과 같은 중간 계층 애플리케이션의 경우 일반적으로 요청이 수행되는 클라이언트의 자격 증명으로 Credentials 속성을 설정합니다.

적용 대상