Gets the user agent string that will be used in messages sent and received by the local endpoint.

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

Syntax

Visual Basic (Declaration)
Public 
ReadOnly 
Property 
UserAgent 
As 
String
C#
public 
string 
UserAgent { 
get; }
Visual C++
public:
property 
String^ 
UserAgent {
	
String^ 
get ();
}
JavaScript
function get_
userAgent();

Remarks

The user agent string is formed by combining the default user agent string of the UCMA v2.0 platform, with the ApplicationUserAgent string set on CollaborationPlatform and the EndpointUserAgent string.

So the final string looks like "UCMAUserAgent ApplicationUserAgent EndpointUserAgent" with a blank space separating each part.

See Also