Edit

Share via


InstantMessagingFlow.DeliveryNotificationReceived Event

Definition

Raised when a message delivery notification is received.

public:
 event EventHandler<Microsoft::Rtc::Collaboration::DeliveryNotificationReceivedEventArgs ^> ^ DeliveryNotificationReceived;
public event EventHandler<Microsoft.Rtc.Collaboration.DeliveryNotificationReceivedEventArgs> DeliveryNotificationReceived;
member this.DeliveryNotificationReceived : EventHandler<Microsoft.Rtc.Collaboration.DeliveryNotificationReceivedEventArgs> 
Public Custom Event DeliveryNotificationReceived As EventHandler(Of DeliveryNotificationReceivedEventArgs) 

Event Type

Examples

This example demonstrates how to receive delivery notifications from the remote application. This code assumes that FlowConfigurationRequested event was registered on the call.

C# Receiving delivery notifications


private void FlowConfigurationRequested(
    object sender,
    InstantMessagingFlowConfigurationRequestedEventArgs e)
{

    // Register to receive delivery notifications
    e.Flow.DeliveryNotificationReceived += this.DeliveryNotificationReceived;

}        

    // Register to receive delivery notifications
    e.Flow.DeliveryNotificationReceived += this.DeliveryNotificationReceived;


Applies to