Gets or sets the credential needed to authenticate the endpoint with servers.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
Credential 
As 
NetworkCredential
C#
public 
NetworkCredential 
Credential { 
get; 
set; }
Visual C++
public:
property 
NetworkCredential^ 
Credential {
	
NetworkCredential^ 
get ();
	
void 
set (
NetworkCredential^ 
value);
}
JavaScript
function get_
credential();
function set_
credential(
value);

Remarks

This value is initialized with the credential passed through UserEndpointSettings and can subsequently be overwritten if a different set of credentials is to be used. Use CredentialCache.DefaultNetworkCredentials for logged on user.

See Also