LocalEndpoint.HandleSignalingSession(SessionReceivedEventArgs) Method

Definition

Intercepts an incoming signaling session before it is processed by the local endpoint (advanced).

protected:
 virtual bool HandleSignalingSession(Microsoft::Rtc::Signaling::SessionReceivedEventArgs ^ sessionReceivedEventArgs);
protected virtual bool HandleSignalingSession (Microsoft.Rtc.Signaling.SessionReceivedEventArgs sessionReceivedEventArgs);
abstract member HandleSignalingSession : Microsoft.Rtc.Signaling.SessionReceivedEventArgs -> bool
override this.HandleSignalingSession : Microsoft.Rtc.Signaling.SessionReceivedEventArgs -> bool

Parameters

sessionReceivedEventArgs
SessionReceivedEventArgs

Information about the incoming signaling session received.

Returns

Returns true if the session was intercepted and handled by the application.

Remarks

An application that intercepts an incoming signaling session must indicate whether it expects the local endpoint to handle it or not by returning false or true.

An application that needs to process custom incoming signaling sessions must first create a derivative of ApplicationEndpoint or UserEndpoint and override this method.

Applies to