Network
maintains multiple network connections
Constructors
Constructor | Description |
new()
Signature: unit -> Network
|
|
Instance members
Instance member | Description |
CloseConns()
Signature: unit -> unit
|
Close all network connections held by Network
|
Connect(addrStr, port, bind, state)
Signature: (addrStr:string * port:int * bind:string * state:obj) -> IConn
Type parameters: 'T
|
|
Connect(addrStr, port, state)
Signature: (addrStr:string * port:int * state:obj) -> IConn
Type parameters: 'T
|
|
Connect(addr, port, state)
Signature: (addr:IPAddress * port:int * state:obj) -> IConn
Type parameters: 'T
|
|
Listen(port, bind, state)
Signature: (port:int * bind:string * state:obj) -> unit
Type parameters: 'T
|
|
Listen(port, state)
Signature: (port:int * state:obj) -> unit
Type parameters: 'T
|
|
StopListen()
Signature: unit -> unit
|
Stop listening for incoming connections
|