ApplicationEndpointSettings.IsDefaultRoutingEndpoint Property
Gets the flag that indicates whether this endpoint is marked as default endpoint to handle incoming requests that are not routable to other endpoints.
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Property IsDefaultRoutingEndpoint As Boolean
Get
Set
'Usage
Dim instance As ApplicationEndpointSettings
Dim value As Boolean
value = instance.IsDefaultRoutingEndpoint
instance.IsDefaultRoutingEndpoint = value
public bool IsDefaultRoutingEndpoint { get; set; }
Property Value
Type: System.Boolean
Remarks
Default routing endpoint is meant for handling all requests received by the collaboration platform for which a matching endpoint could not be found. Common usages of this type of endpoint include: handling of incoming requests targetting a trusted service (i.e. using GRUU supplied in the platform as destination uri),processing incoming calls for endpoints that have already been terminated (e.g. to play back "service unavailable" announcements),handling calls coming from different remote sip peers (Communication Server or Others) destined to one unique service and thus relaxing a strict platform routing logic based on the destination-owner uri matching.
For a given instance of the CollaborationPlatform, only one endpoint can be a maked as default routing endpoint.
See Also
Reference
ApplicationEndpointSettings Class