C# 클래스 PRI.ProductivityExtensions.UdpClientExtensions.UdpClientable

Class that contains extension methods that extend UdpClient
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
BeginReceive ( this udpclient, AsyncCallback requestCallback ) : IAsyncResult

Extends BeginReceive so that when a state object is not needed, null does not need to be passed. udpclient.BeginReceive(requestCallback);

BeginSend ( this udpclient, Byte datagram, Int32 bytes, AsyncCallback requestCallback ) : IAsyncResult

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, requestCallback);

BeginSend ( this udpclient, Byte datagram, Int32 bytes, String hostname, Int32 port, AsyncCallback requestCallback ) : IAsyncResult

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, hostname, port, requestCallback);

BeginSend ( this udpclient, Byte datagram, Int32 bytes, System endPoint, AsyncCallback requestCallback ) : IAsyncResult

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, endPoint, requestCallback);

메소드 상세

BeginReceive() 공개 정적인 메소드

Extends BeginReceive so that when a state object is not needed, null does not need to be passed. udpclient.BeginReceive(requestCallback);
public static BeginReceive ( this udpclient, AsyncCallback requestCallback ) : IAsyncResult
udpclient this
requestCallback AsyncCallback
리턴 IAsyncResult

BeginSend() 공개 정적인 메소드

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, requestCallback);
public static BeginSend ( this udpclient, Byte datagram, Int32 bytes, AsyncCallback requestCallback ) : IAsyncResult
udpclient this
datagram Byte
bytes System.Int32
requestCallback AsyncCallback
리턴 IAsyncResult

BeginSend() 공개 정적인 메소드

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, hostname, port, requestCallback);
public static BeginSend ( this udpclient, Byte datagram, Int32 bytes, String hostname, Int32 port, AsyncCallback requestCallback ) : IAsyncResult
udpclient this
datagram Byte
bytes System.Int32
hostname String
port System.Int32
requestCallback AsyncCallback
리턴 IAsyncResult

BeginSend() 공개 정적인 메소드

Extends BeginSend so that when a state object is not needed, null does not need to be passed. udpclient.BeginSend(datagram, bytes, endPoint, requestCallback);
public static BeginSend ( this udpclient, Byte datagram, Int32 bytes, System endPoint, AsyncCallback requestCallback ) : IAsyncResult
udpclient this
datagram Byte
bytes System.Int32
endPoint System
requestCallback AsyncCallback
리턴 IAsyncResult