Skip to content

Exomia.Network.UDP

Daniel Baetz edited this page Nov 11, 2018 · 22 revisions

UdpClientApm

A UDP-Client build with the "Asynchronous Programming Model" (APM)

public class Exomia.Network.UDP.UdpClientApm
    : ClientBase, IClient, IDisposable

UdpClientEap

A UDP-Client build with the "Event-based Asynchronous Pattern" (EAP)

public class Exomia.Network.UDP.UdpClientEap
    : ClientBase, IClient, IDisposable

UdpServerApmBase<TServerClient>

A UDP-Server build with the "Asynchronous Programming Model" (APM)

public abstract class Exomia.Network.UDP.UdpServerApmBase<TServerClient>
    : ServerBase<EndPoint, TServerClient>, IServer<EndPoint>, IDisposable

Methods

Type Name Summary
SendError SendTo(EndPoint arg0, UInt32 commandid, Byte[] data, Int32 offset, Int32 length, UInt32 responseid)

UdpServerEapBase<TServerClient>

A UDP-Server build with the "Event-based Asynchronous Pattern" (EAP)

public abstract class Exomia.Network.UDP.UdpServerEapBase<TServerClient>
    : ServerBase<EndPoint, TServerClient>, IServer<EndPoint>, IDisposable

Methods

Type Name Summary
SendError SendTo(EndPoint arg0, UInt32 commandid, Byte[] data, Int32 offset, Int32 length, UInt32 responseid)

Clone this wiki locally