/// <summary> /// Processes a received abortion /// </summary> /// <param name="source">The address of the device that sent the abortion</param> /// <param name="message">The abortion</param> public void ProcessAbort(Address source, AbortMessage message) { if (message.Server) { ClientTransaction tx = null; lock (_lock) { tx = _getClientTransaction(source, message.InvokeId); } if (tx != null) { tx.OnAbort(message); } } }