NetMsmqBinding.Security Propiedad

Definición

Obtiene o establece el objeto NetMsmqSecurity que está asociado con este enlace.

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

Valor de propiedad

NetMsmqSecurity asociado con este enlace.

Ejemplos

El código siguiente muestra cómo obtener el objeto NetMsmqSecurity.

NetMsmqBinding binding = new NetMsmqBinding();
    NetMsmqSecurity security = binding.Security;

Comentarios

NetMsmqSecurity es una encapsulación del transporte de Message Queuing (MSMQ) y la seguridad de SOAP. Especifica si se habilitó el transporte o la seguridad de SOAP y, si así fuera, qué modo de autenticación y niveles de protección están en uso.

Se aplica a