TcpKsiServiceProtocol Constructor
|
Create TCP KSI service protocol for signing.
Namespace:
Guardtime.KSI.Service
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic TcpKsiServiceProtocol(
IPAddress ipAddress,
ushort port,
Nullable<uint> requestTimeout = null,
Nullable<uint> bufferSize = null
)
Public Sub New (
ipAddress As IPAddress,
port As UShort,
Optional requestTimeout As Nullable(Of UInteger) = Nothing,
Optional bufferSize As Nullable(Of UInteger) = Nothing
)
public:
TcpKsiServiceProtocol(
IPAddress^ ipAddress,
unsigned short port,
Nullable<unsigned int> requestTimeout = nullptr,
Nullable<unsigned int> bufferSize = nullptr
)
new :
ipAddress : IPAddress *
port : uint16 *
?requestTimeout : Nullable<uint32> *
?bufferSize : Nullable<uint32>
(* Defaults:
let _requestTimeout = defaultArg requestTimeout null
let _bufferSize = defaultArg bufferSize null
*)
-> TcpKsiServiceProtocol
Parameters
- ipAddress
- Type: System.NetIPAddress
Signing service IP address - port
- Type: SystemUInt16
Signing service port - requestTimeout (Optional)
- Type: SystemNullableUInt32
request timeout in milliseconds - bufferSize (Optional)
- Type: SystemNullableUInt32
size of buffer to be used when receiving data
See Also