Example #1
0
 static private byte[] GetTransactionCookie(Transaction transaction, byte[] whereAbouts)
 {
     byte[] transactionCookie = null;
     if (null != transaction)
     {
         transactionCookie = TransactionInterop.GetExportCookie(transaction, whereAbouts);
     }
     return(transactionCookie);
 }