Поделиться через


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. Значение по умолчанию — 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 проверяет подлинность учетных данных клиента только тогда, когда клиент устанавливает связь с сервером.

Применяется к