C# 클래스 MiniUDP.NetSocket

Since raw sockets are thread safe, we use a global socket singleton between the two threads for the sake of convenience.
파일 보기 프로젝트 열기: ashoulson/MiniUDP 1 사용 예제들

공개 메소드들

메소드 설명
Empty ( SocketError error ) : bool
Succeeded ( SocketError error ) : bool

비공개 메소드들

메소드 설명
Bind ( int port ) : SocketError
Close ( ) : void
NetSocket ( ) : System.Net
TryReceive ( IPEndPoint &source, byte destBuffer, int &length ) : SocketError

Attempts to read from OS socket. Returns false if the read fails or if there is nothing to read.

TrySend ( IPEndPoint destination, byte buffer, int length ) : SocketError

Attempts to send data to endpoint via OS socket. Returns false if the send failed.

메소드 상세

Empty() 공개 정적인 메소드

public static Empty ( SocketError error ) : bool
error SocketError
리턴 bool

Succeeded() 공개 정적인 메소드

public static Succeeded ( SocketError error ) : bool
error SocketError
리턴 bool