英語で読む

次の方法で共有


WebRequest.AuthenticationLevel プロパティ

定義

この要求で使用する認証レベルおよび偽装レベルを示す値を取得または設定します。

C#
public System.Net.Security.AuthenticationLevel AuthenticationLevel { get; set; }

プロパティ値

AuthenticationLevel 値のビットごとの組み合わせ。 既定値は MutualAuthRequested です。

相互認証では、クライアントとサーバーの両方が、それらの身元を証明する資格情報を提供します。 MutualAuthRequiredMutualAuthRequested は、Kerberos 認証に関連する値です。 Kerberos 認証は、直接サポートすることも、Negotiate セキュリティ プロトコルを使用して実際のセキュリティ プロトコルを選択する場合に使用することもできます。 認証プロトコルの詳細については、「 インターネット認証」を参照してください。

相互認証が行われたかどうかを確認するには、IsMutuallyAuthenticated プロパティをチェックします。

MutualAuthRequired 認証フラグの値を指定していて相互認証が行われない場合、アプリケーションは、相互認証が失敗したことを示す ProtocolViolationException 内部例外を持つ IOException を受け取ります。

次のコード例では、このプロパティの値を設定します。

C#

// The following example uses the System, System.Net,
// and System.IO namespaces.

public static void RequestMutualAuth(Uri resource)
{
    // Create a new HttpWebRequest object for the specified resource.
    WebRequest request=(WebRequest) WebRequest.Create(resource);
    // Request mutual authentication.
   request.AuthenticationLevel = AuthenticationLevel.MutualAuthRequested;
    // Supply client credentials.
    request.Credentials = CredentialCache.DefaultCredentials;
    HttpWebResponse response = (HttpWebResponse) request.GetResponse();
    // Determine whether mutual authentication was used.
    Console.WriteLine("Is mutually authenticated? {0}", response.IsMutuallyAuthenticated);
    // Read and display the response.
    Stream streamResponse = response.GetResponseStream();
    StreamReader streamRead = new StreamReader(streamResponse);
    string responseString = streamRead.ReadToEnd();
   Console.WriteLine(responseString);
    // Close the stream objects.
    streamResponse.Close();
    streamRead.Close();
    // Release the HttpWebResponse.
    response.Close();
}

適用対象

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1