C# Class Agnos.Transports.SslSocketTransport

an implementation of a transport over SSL sockets. example: SslSocketTransport t = new SslSocketTransport("localhost", 12345) in order to configure an SSL connection, create an SslStream and pass it to the constructor
Inheritance: BaseTransport
Afficher le fichier Open project: tomerfiliba/agnos

Protected Properties

Свойство Type Description
sock Socket

Méthodes publiques

Méthode Description
SslSocketTransport ( IPAddress addr, int port ) : System.Text
SslSocketTransport ( Socket sock ) : System.Text
SslSocketTransport ( SslStream stream ) : System.Text
SslSocketTransport ( SslStream stream, int bufsize ) : System.Text
SslSocketTransport ( String host, int port ) : System.Text

Method Details

SslSocketTransport() public méthode

public SslSocketTransport ( IPAddress addr, int port ) : System.Text
addr System.Net.IPAddress
port int
Résultat System.Text

SslSocketTransport() public méthode

public SslSocketTransport ( Socket sock ) : System.Text
sock Socket
Résultat System.Text

SslSocketTransport() public méthode

public SslSocketTransport ( SslStream stream ) : System.Text
stream System.Net.Security.SslStream
Résultat System.Text

SslSocketTransport() public méthode

public SslSocketTransport ( SslStream stream, int bufsize ) : System.Text
stream System.Net.Security.SslStream
bufsize int
Résultat System.Text

SslSocketTransport() public méthode

public SslSocketTransport ( String host, int port ) : System.Text
host String
port int
Résultat System.Text

Property Details

sock protected_oe property

protected Socket sock
Résultat Socket