| TcpConnect Constructor |
TBD
Namespace:
Akka.IO
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public Connect(
EndPoint remoteAddress,
EndPoint localAddress = null,
IEnumerable<InetSocketOption> options = null,
Nullable<TimeSpan> timeout = null,
bool pullMode = false
)
new :
remoteAddress : EndPoint *
?localAddress : EndPoint *
?options : IEnumerable<InetSocketOption> *
?timeout : Nullable<TimeSpan> *
?pullMode : bool
(* Defaults:
let _localAddress = defaultArg localAddress null
let _options = defaultArg options null
let _timeout = defaultArg timeout null
let _pullMode = defaultArg pullMode false
*)
-> Connect
Parameters
- remoteAddress
- Type: System.NetEndPoint
TBD - localAddress (Optional)
- Type: System.NetEndPoint
TBD - options (Optional)
- Type: System.Collections.GenericIEnumerableInetSocketOption
TBD - timeout (Optional)
- Type: SystemNullableTimeSpan
TBD - pullMode (Optional)
- Type: SystemBoolean
TBD
See Also