C# Class PRI.ProductivityExtensions.UdpAnySourceMulticastClientExtensions.UdpAnySourceMulticastClientable

Class that contains extension methods that extend UdpAnySourceMulticastClient
Mostrar archivo Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
BeginJoinGroup ( this udpanysourcemulticastclient, AsyncCallback callback ) : IAsyncResult

Extends BeginJoinGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginJoinGroup(callback);

BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback ) : IAsyncResult

Extends BeginReceiveFromGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, callback);

BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult

Extends BeginReceiveFromGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, callback, state);

BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, AsyncCallback callback ) : IAsyncResult

Extends BeginReceiveFromGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, offset, count, callback);

BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, System remoteEndPoint, AsyncCallback callback ) : IAsyncResult

Extends BeginSendTo so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginSendTo(buffer, offset, count, remoteEndPoint, callback);

BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, System remoteEndPoint, AsyncCallback callback ) : IAsyncResult

Extends BeginSendTo so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendTo(buffer, remoteEndPoint, callback);

BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, System remoteEndPoint, AsyncCallback callback, Object state ) : IAsyncResult

Extends BeginSendTo so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendTo(buffer, remoteEndPoint, callback, state);

BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback ) : IAsyncResult

Extends BeginSendToGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendToGroup(buffer, callback);

BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult

Extends BeginSendToGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendToGroup(buffer, callback, state);

BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, AsyncCallback callback ) : IAsyncResult

Extends BeginSendToGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginSendToGroup(buffer, offset, count, callback);

Method Details

BeginJoinGroup() public static method

Extends BeginJoinGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginJoinGroup(callback);
public static BeginJoinGroup ( this udpanysourcemulticastclient, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
callback AsyncCallback
return IAsyncResult

BeginReceiveFromGroup() public static method

Extends BeginReceiveFromGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, callback);
public static BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
callback AsyncCallback
return IAsyncResult

BeginReceiveFromGroup() public static method

Extends BeginReceiveFromGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, callback, state);
public static BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
callback AsyncCallback
state Object
return IAsyncResult

BeginReceiveFromGroup() public static method

Extends BeginReceiveFromGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginReceiveFromGroup(buffer, offset, count, callback);
public static BeginReceiveFromGroup ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
offset System.Int32
count System.Int32
callback AsyncCallback
return IAsyncResult

BeginSendTo() public static method

Extends BeginSendTo so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginSendTo(buffer, offset, count, remoteEndPoint, callback);
public static BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, System remoteEndPoint, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
offset System.Int32
count System.Int32
remoteEndPoint System
callback AsyncCallback
return IAsyncResult

BeginSendTo() public static method

Extends BeginSendTo so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendTo(buffer, remoteEndPoint, callback);
public static BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, System remoteEndPoint, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
remoteEndPoint System
callback AsyncCallback
return IAsyncResult

BeginSendTo() public static method

Extends BeginSendTo so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendTo(buffer, remoteEndPoint, callback, state);
public static BeginSendTo ( this udpanysourcemulticastclient, Byte buffer, System remoteEndPoint, AsyncCallback callback, Object state ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
remoteEndPoint System
callback AsyncCallback
state Object
return IAsyncResult

BeginSendToGroup() public static method

Extends BeginSendToGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendToGroup(buffer, callback);
public static BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
callback AsyncCallback
return IAsyncResult

BeginSendToGroup() public static method

Extends BeginSendToGroup so that buffer offset of 0 and call to Array.Length are not needed. udpanysourcemulticastclient.BeginSendToGroup(buffer, callback, state);
public static BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, AsyncCallback callback, Object state ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
callback AsyncCallback
state Object
return IAsyncResult

BeginSendToGroup() public static method

Extends BeginSendToGroup so that when a state object is not needed, null does not need to be passed. udpanysourcemulticastclient.BeginSendToGroup(buffer, offset, count, callback);
public static BeginSendToGroup ( this udpanysourcemulticastclient, Byte buffer, Int32 offset, Int32 count, AsyncCallback callback ) : IAsyncResult
udpanysourcemulticastclient this
buffer Byte
offset System.Int32
count System.Int32
callback AsyncCallback
return IAsyncResult