Click or drag to resize

ClientSlotSendTransaction Method (String, Object, Boolean, Boolean)

Sends a transaction request to the specified service, optinally encrypting and signing messages.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public Message SendTransaction(
	string service,
	Object request,
	bool encrypted,
	bool signed
)

Parameters

service
Type: SystemString
The name of the transaction service.
request
Type: SystemObject
The transaction request data.
encrypted
Type: SystemBoolean
If true the messages are encrypted.
signed
Type: SystemBoolean
If true the message is signed.

Return Value

Type: Message
The service reply Message.
Remarks
This is a convenience method implemented by the following call:
ClientSlot.SendTransaction(service, request, encrypted, signed, 0);
See Also