SdpEncryptionMethod Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates possible values for the SDP encryption method found in the "k" line of an SDP.
public enum class SdpEncryptionMethod
public enum SdpEncryptionMethod
type SdpEncryptionMethod =
Public Enum SdpEncryptionMethod
- Inheritance
-
SdpEncryptionMethod
Fields
Name | Value | Description |
---|---|---|
Unspecified | 0 | The "k" line is not present in the SDP. |
Clear | 1 | The "k" line indicates the encryption key is clear. |
Base64 | 2 | The "k" line indicates the encryption key is Base64. |
Uri | 3 | The "k" line indicates the encryption key is provided in a URI. |
Prompt | 4 | The "k" line indicates the encryption key is provided by a user prompt. |