|
This online help file is for EFT Server version 6.2.x. For other versions of EFT Server, please refer to http://help.globalscape.com/help/index.html. (If the Index and Contents are hidden, click Show Contents pane in the top left corner of this topic.) |
|
Available in EFT Server 6.1 and later. |
The ICIAS2SendActionParams::ReceiptDelivery property allows you to specify or retrieve the mechanism of receipt delivery required for an AS2 message. (Refer to AS2ReceiptDelivery enumeration for available mechanisms.) This property is applicable only if ReceiptPolicy property is not set to NoReceipt.
HRESULT ReceiptDelivery([out, retval] AS2ReceiptDelivery* pVal);
HRESULT ReceiptDelivery([in] AS2ReceiptDelivery newVal);
Retrieving:
If (AS2SendParams.ReceiptPolicy <> NoReceipt) _
And (AS2SendParams.ReceiptDelivery = Async)
Then
MsgBox "Are you ready to wait for receipt for several days?"
End If
Specifying:
AS2SendParams.ReceiptDelivery = Sync