WSHttpBinding.Security Свойство

Определение

Возвращает параметры безопасности, используемые с данной привязкой.

public:
 property System::ServiceModel::WSHttpSecurity ^ Security { System::ServiceModel::WSHttpSecurity ^ get(); void set(System::ServiceModel::WSHttpSecurity ^ value); };
public:
 property System::ServiceModel::WSHttpSecurity ^ Security { System::ServiceModel::WSHttpSecurity ^ get(); };
public System.ServiceModel.WSHttpSecurity Security { get; set; }
public System.ServiceModel.WSHttpSecurity Security { get; }
member this.Security : System.ServiceModel.WSHttpSecurity with get, set
member this.Security : System.ServiceModel.WSHttpSecurity
Public Property Security As WSHttpSecurity
Public ReadOnly Property Security As WSHttpSecurity

Значение свойства

Объект WSHttpSecurity, используемый с этой привязкой. Значение по умолчанию свойства ModeMessage.

Примеры

В следующем примере показано, как получить значение свойства Security.

WSHttpBinding wsHttpBinding = new WSHttpBinding();
WSHttpSecurity whSecurity = wsHttpBinding.Security;
Dim wsHttpBinding As New WSHttpBinding()
Dim whSecurity As WSHttpSecurity = wsHttpBinding.Security

Комментарии

Чтобы задать параметры безопасности, отличные от установленных по умолчанию, воспользуйтесь конструктором WSHttpBinding(SecurityMode).

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