CollaborationPlatform.RegisterForApplicationEndpointSettings Method

Definition

Registers a delegate to receive discovered application endpoint settings.

public:
 void RegisterForApplicationEndpointSettings(EventHandler<Microsoft::Rtc::Collaboration::ApplicationEndpointSettingsDiscoveredEventArgs ^> ^ applicationEndpointSettingsDiscoveredDelegate);
public void RegisterForApplicationEndpointSettings (EventHandler<Microsoft.Rtc.Collaboration.ApplicationEndpointSettingsDiscoveredEventArgs> applicationEndpointSettingsDiscoveredDelegate);
member this.RegisterForApplicationEndpointSettings : EventHandler<Microsoft.Rtc.Collaboration.ApplicationEndpointSettingsDiscoveredEventArgs> -> unit
Public Sub RegisterForApplicationEndpointSettings (applicationEndpointSettingsDiscoveredDelegate As EventHandler(Of ApplicationEndpointSettingsDiscoveredEventArgs))

Parameters

applicationEndpointSettingsDiscoveredDelegate
EventHandler<ApplicationEndpointSettingsDiscoveredEventArgs>

Delegate to handle discovered application endpoint settings.

Exceptions

Thrown if the CollaborationPlatform instance was not created with ProvisionedApplicationPlatformSettings.

Thrown when parameters are null.

Remarks

Upon registering a handler, the application will receive the endpoint settings for which endpoints have not been created yet. In the handler, the application can choose to create endpoints right away using the settings or ignore the settings if it wants to handle them in a different handler it registers.

Applies to