Delegate OutcomeCallback
A callback that is invoked when an outcome is received from peer for a message.
Namespace: Amqp
Assembly: Amqp.Net.dll
Syntax
public delegate void OutcomeCallback(ILink sender, Message message, Outcome outcome, object state);
Parameters
Type | Name | Description |
---|---|---|
ILink | sender | The link where the message is transferred. |
Message | message | The message to which the outcome applies. |
Outcome | outcome | The received outcome from the remote peer. |
System.Object | state | The user object specified in the Send method. |