ProcessModelSection.ComAuthenticationLevel プロパティ

定義

DCOM セキュリティの認証レベルを示す値を取得または設定します。

public:
 property System::Web::Configuration::ProcessModelComAuthenticationLevel ComAuthenticationLevel { System::Web::Configuration::ProcessModelComAuthenticationLevel get(); void set(System::Web::Configuration::ProcessModelComAuthenticationLevel value); };
[System.Configuration.ConfigurationProperty("comAuthenticationLevel", DefaultValue=System.Web.Configuration.ProcessModelComAuthenticationLevel.Connect)]
public System.Web.Configuration.ProcessModelComAuthenticationLevel ComAuthenticationLevel { get; set; }
[<System.Configuration.ConfigurationProperty("comAuthenticationLevel", DefaultValue=System.Web.Configuration.ProcessModelComAuthenticationLevel.Connect)>]
member this.ComAuthenticationLevel : System.Web.Configuration.ProcessModelComAuthenticationLevel with get, set
Public Property ComAuthenticationLevel As ProcessModelComAuthenticationLevel

プロパティ値

ProcessModelComAuthenticationLevel 値のいずれか 1 つ。 既定値は Connect です。

属性

ComAuthenticationLevel プロパティへのアクセス方法を次のコード例に示します。


// Get the current ComAuthenticationLevel property value.
ProcessModelComAuthenticationLevel comAuthLevel = 
   processModelSection.ComAuthenticationLevel;

// Set the ComAuthenticationLevel property to
// ProcessModelComAuthenticationLevel.Call.
processModelSection.ComAuthenticationLevel =
    ProcessModelComAuthenticationLevel.Call;
' Get the current ComAuthenticationLevel property value.
   Dim comAuthLevel _
   As ProcessModelComAuthenticationLevel = _
   processModelSection.ComAuthenticationLevel

' Set the ComAuthenticationLevel property to
' ProcessModelComAuthenticationLevel.Call.
   processModelSection.ComAuthenticationLevel = _
   ProcessModelComAuthenticationLevel.Call

注釈

このプロパティ値が に Default設定されている場合、DCOM は通常のセキュリティ ネゴシエーション アルゴリズムを使用して認証レベルを決定します。 このプロパティに割り当てられる既定値は、Machine.config ファイルで指定されている とおりです Connect。 この場合、DCOM は、クライアントがサーバーとの関係を確立した場合にのみ、クライアントの資格情報を認証します。

適用対象