TransactionalNodeService.Proxy.Universal.Soap.TransactionFramework.UpdateRelationshipTransactionLink.OnTransactionCompleted C# (CSharp) Method

OnTransactionCompleted() private method

private OnTransactionCompleted ( object sender, Service e ) : void
sender object
e Service
return void
        private void OnTransactionCompleted(object sender, Service.CompleteTransactionCompletedEventArgs e)
        {
            TransactionStatus = ServerStatus.TransactionCompleted;
            if (ResponseParameter != null)
            {
                DebugLogger.Instance.LogMsg("Update relationship transaction completed. ResponseParameter Id - '{0}';", ResponseParameter.I);
            }
            if (InternalTransactionCompleted != null)
            {
                InternalTransactionCompleted(this, e);
            }
        }