Gets the inner endpoint.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
ReadOnly 
Property 
InnerEndpoint 
As 

RealTimeEndpoint
C#
public 

RealTimeEndpoint 
InnerEndpoint { 
get; }
Visual C++
public:
property 

RealTimeEndpoint^ 
InnerEndpoint {
	

RealTimeEndpoint^ 
get ();
}
JavaScript
function get_
innerEndpoint();

Remarks

The inner endpoint is a Microsoft.Rtc.Signaling.RealTimeEndpoint instance. If the local endpoint is owned by a user, it is a Microsoft.Rtc.Signaling.SipEndpoint. If it is owned by an application, it is a Microsoft.Rtc.Signaling.SipPeerToPeerEndpoint. By accessing the inner endpoint, an application can access the advanced API of UCMA v1.0 and for example, send or receive one-off SIP requests, initiate custom SIP sessions or change the configuration of the endpoint.

The application should not register for session received event from innerendpoint as it will clash with handling of the event at the platform level.

See Also