Gets whether the channel is encrypted.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
Encrypted 
As 
Boolean
C#
public 
bool 
Encrypted { 
get; 
internal 
set; }
Visual C++
public:
property 
bool 
Encrypted {
	
bool 
get ();
	
void 
set (
bool 
value);
}
JavaScript
function get_
encrypted();
function set_
encrypted(
value);

Remarks

Encrypted is true if and only if the channel is encrypted, and false otherwise. An instance of a MediaChannel subclass can be encrypted only when the associated AudioVideoFlow instance is active; that is, when the State property on the AudioVideoFlow instance is Active.

See Also