NetTcpSecurity.Transport Свойство

Определение

Получает тип требований безопасности уровня сообщений для конечных точек, настроенных с привязкой NetTcpBinding.

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

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

TcpTransportSecurity

TcpTransportSecurity указывает тип требований безопасности транспортного уровня для конечной точки.

Примеры

TcpTransportSecurity tsTcp = security.Transport;
Console.WriteLine("\tTcpTransportSecurity:");
Console.WriteLine("\t\tClient Credential Type: {0}", tsTcp.ClientCredentialType);
Console.WriteLine("\t\tProtectionLevel: {0}", tsTcp.ProtectionLevel);

Комментарии

Используйте Transport безопасность для целостности и конфиденциальности сообщения SOAP и для взаимной проверки подлинности. Если этот режим безопасности выбран на привязке, стек каналов настраивается с использованием безопасного транспорта, и сообщения SOAP защищаются с использованием безопасности транспорта, например HTTPS или SSL по TCP.

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