[C#/Java]
int SendReceipt(string URL, System.IO.Stream Receipt);
int SendReceipt(string URL, string Receipt);
[VB.NET]
Function SendReceipt(ByVal URL As String, ByVal Receipt As System.IO.Stream) As Integer
Function SendReceipt(ByVal URL As String, ByVal Receipt As String) As Integer
[Pascal]
function SendReceipt(const URL : string; Receipt : TStream): integer;
function SendReceipt(const URL : string; const Receipt : string): integer;