Method |
Description |
|
Accept ( ) : SocketBase |
|
|
BeginAccept ( AsyncCallback callback, object state ) : IAsyncResult |
|
|
BeginBind ( SocketBase socket, AsyncCallback callback, object state ) : IAsyncResult |
|
|
BeginConnect ( EndPoint remoteEP, AsyncCallback callback, object state ) : IAsyncResult |
|
|
BeginConnect ( string hostName, int port, AsyncCallback callback, object state ) : IAsyncResult |
|
|
BeginGetHostByName ( string hostName, AsyncCallback cb, object state ) : IAsyncResult |
|
|
BeginReceive ( byte buffer, int offset, int size, AsyncCallback callback, object state ) : IAsyncResult |
|
|
BeginSend ( byte buffer, int offset, int size, AsyncCallback callback, object state ) : IAsyncResult |
|
|
Bind ( SocketBase socket ) : void |
|
|
Close ( ) : void |
|
|
Connect ( EndPoint remoteEP ) : void |
|
|
Connect ( string hostName, int port ) : void |
|
|
ConstructEndPoint ( IPHostEntry host, int port ) : IPEndPoint |
|
|
EndAccept ( IAsyncResult asyncResult ) : SocketBase |
|
|
EndBind ( IAsyncResult ar ) : void |
|
|
EndConnect ( IAsyncResult asyncResult ) : void |
|
|
EndGetHostByName ( IAsyncResult ar ) : IPHostEntry |
|
|
EndReceive ( IAsyncResult asyncResult ) : int |
|
|
EndSend ( IAsyncResult asyncResult ) : int |
|
|
GetHostByName ( string hostName ) : IPHostEntry |
|
|
Listen ( int backlog ) : void |
|
|
Receive ( byte buffer ) : int |
|
|
Receive ( byte buffer, int size ) : int |
|
|
Receive ( byte buffer, int offset, int size ) : int |
|
|
Send ( byte buffer ) : int |
|
|
Send ( byte buffer, int size ) : int |
|
|
Send ( byte buffer, int offset, int size ) : int |
|
|
SetSocketOption ( SocketOptionLevel optionLevel, SocketOptionName optionName, byte optionValue ) : void |
|
|
SetSocketOption ( SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue ) : void |
|
|
SetSocketOption ( SocketOptionLevel optionLevel, SocketOptionName optionName, object optionValue ) : void |
|
|
Shutdown ( SocketShutdown how ) : void |
|
|