Sdílet prostřednictvím


ProcessModelSection.ComAuthenticationLevel Vlastnost

Definice

Získá nebo nastaví hodnotu označující úroveň ověřování pro zabezpečení modelu 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

Hodnota vlastnosti

ProcessModelComAuthenticationLevel

Jedna z ProcessModelComAuthenticationLevel hodnot. Výchozí hodnota je Connect.

Atributy

Příklady

Následující příklad kódu ukazuje, jak získat přístup k ComAuthenticationLevel vlastnosti.


// 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

Poznámky

Pokud je tato hodnota vlastnosti nastavena na Default, DCOM určuje úroveň ověřování pomocí svého normálního algoritmu vyjednávání zabezpečení. Výchozí hodnota přiřazená této vlastnosti, jak je uvedeno v souboru Machine.config, je Connect. V tomto případě DCOM ověří přihlašovací údaje klienta pouze v případě, že klient vytvoří relaci se serverem.

Platí pro