AdaptiveMediaSourceCreationStatus 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.
Specifies the result of an attempt to create a AdaptiveMediaSource object.
public enum class AdaptiveMediaSourceCreationStatus
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class AdaptiveMediaSourceCreationStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum AdaptiveMediaSourceCreationStatus
var value = Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationStatus.success
Public Enum AdaptiveMediaSourceCreationStatus
- Inheritance
-
AdaptiveMediaSourceCreationStatus
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
Success | 0 | The AdaptiveMediaSource object was successfully created. |
ManifestDownloadFailure | 1 | The creation of the AdaptiveMediaSource object failed as the result of a failure in downloading the adaptive streaming manifest. |
ManifestParseFailure | 2 | The creation of the AdaptiveMediaSource object failed as the result of a failure in parsing the adaptive streaming manifest. |
UnsupportedManifestContentType | 3 | The creation of the AdaptiveMediaSource object failed because the content of the adaptive streaming manifest is unsupported. |
UnsupportedManifestVersion | 4 | The creation of the AdaptiveMediaSource object failed because the version of the adaptive streaming manifest is unsupported. |
UnsupportedManifestProfile | 5 | The creation of the AdaptiveMediaSource object failed because the profile of the adaptive streaming manifest is unsupported. |
UnknownFailure | 6 | The creation of the AdaptiveMediaSource object failed because of an unknown failure. |