C# 클래스 System.Net.TlsStream

상속: NetworkStream, IDisposable
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

공개 메소드들

메소드 설명
AuthenticateAsClient ( ) : void
BeginAuthenticateAsClient ( AsyncCallback asyncCallback, object state ) : IAsyncResult
BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
BeginWrite ( byte buffer, int offset, int size, AsyncCallback callback, object state ) : IAsyncResult
Close ( ) : void
EndAuthenticateAsClient ( IAsyncResult asyncResult ) : void
EndRead ( IAsyncResult asyncResult ) : int
EndWrite ( IAsyncResult result ) : void
Read ( byte buffer, int offset, int size ) : int
TlsStream ( NetworkStream stream, Socket socket ) : System.Net.Security
TlsStream ( NetworkStream stream, Socket socket, string host, X509CertificateCollection clientCertificates ) : System.Net.Security
Write ( byte buffer, int offset, int size ) : void

메소드 상세

AuthenticateAsClient() 공개 메소드

public AuthenticateAsClient ( ) : void
리턴 void

BeginAuthenticateAsClient() 공개 메소드

public BeginAuthenticateAsClient ( AsyncCallback asyncCallback, object state ) : IAsyncResult
asyncCallback AsyncCallback
state object
리턴 IAsyncResult

BeginRead() 공개 메소드

public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state object
리턴 IAsyncResult

BeginWrite() 공개 메소드

public BeginWrite ( byte buffer, int offset, int size, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
size int
callback AsyncCallback
state object
리턴 IAsyncResult

Close() 공개 메소드

public Close ( ) : void
리턴 void

EndAuthenticateAsClient() 공개 메소드

public EndAuthenticateAsClient ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
리턴 void

EndRead() 공개 메소드

public EndRead ( IAsyncResult asyncResult ) : int
asyncResult IAsyncResult
리턴 int

EndWrite() 공개 메소드

public EndWrite ( IAsyncResult result ) : void
result IAsyncResult
리턴 void

Read() 공개 메소드

public Read ( byte buffer, int offset, int size ) : int
buffer byte
offset int
size int
리턴 int

TlsStream() 공개 메소드

public TlsStream ( NetworkStream stream, Socket socket ) : System.Net.Security
stream NetworkStream
socket Socket
리턴 System.Net.Security

TlsStream() 공개 메소드

public TlsStream ( NetworkStream stream, Socket socket, string host, X509CertificateCollection clientCertificates ) : System.Net.Security
stream NetworkStream
socket Socket
host string
clientCertificates System.Security.Cryptography.X509Certificates.X509CertificateCollection
리턴 System.Net.Security

Write() 공개 메소드

public Write ( byte buffer, int offset, int size ) : void
buffer byte
offset int
size int
리턴 void