AdaptiveMediaSource.CreateFromStreamAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateFromStreamAsync(IInputStream, Uri, String) |
Crée de manière asynchrone un objet AdaptiveMediaSource à partir du flux d’entrée fourni. |
CreateFromStreamAsync(IInputStream, Uri, String, HttpClient) |
Crée de manière asynchrone un objet AdaptiveMediaSource à partir du flux d’entrée fourni. |
CreateFromStreamAsync(IInputStream, Uri, String)
Crée de manière asynchrone un objet AdaptiveMediaSource à partir du flux d’entrée fourni.
public:
static IAsyncOperation<AdaptiveMediaSourceCreationResult ^> ^ CreateFromStreamAsync(IInputStream ^ stream, Uri ^ uri, Platform::String ^ contentType);
/// [Windows.Foundation.Metadata.Overload("CreateFromStreamAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<AdaptiveMediaSourceCreationResult> CreateFromStreamAsync(IInputStream const& stream, Uri const& uri, winrt::hstring const& contentType);
[Windows.Foundation.Metadata.Overload("CreateFromStreamAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<AdaptiveMediaSourceCreationResult> CreateFromStreamAsync(IInputStream stream, System.Uri uri, string contentType);
function createFromStreamAsync(stream, uri, contentType)
Public Shared Function CreateFromStreamAsync (stream As IInputStream, uri As Uri, contentType As String) As IAsyncOperation(Of AdaptiveMediaSourceCreationResult)
Paramètres
- stream
- IInputStream
Flux d’entrée à partir duquel AdaptiveMediaSource est créé.
URI (Uniform Resource Identifier) de la source. Il est utilisé par AdaptiveMediaSource pour résoudre les URI relatifs.
- contentType
-
String
Platform::String
winrt::hstring
Chaîne qui identifie le type de contenu MIME de la source. Il peut s’agir d’un type de contenu HLS (Http Live Streaming) ou Dash (Dynamic Adaptive Streaming over HTTP).
Retours
Retourne une valeur AdaptiveMediaSourceCreationResult en cas de réussite de l’exécution.
- Attributs
Voir aussi
S’applique à
CreateFromStreamAsync(IInputStream, Uri, String, HttpClient)
Crée de manière asynchrone un objet AdaptiveMediaSource à partir du flux d’entrée fourni.
public:
static IAsyncOperation<AdaptiveMediaSourceCreationResult ^> ^ CreateFromStreamAsync(IInputStream ^ stream, Uri ^ uri, Platform::String ^ contentType, HttpClient ^ httpClient);
/// [Windows.Foundation.Metadata.Overload("CreateFromStreamWithDownloaderAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<AdaptiveMediaSourceCreationResult> CreateFromStreamAsync(IInputStream const& stream, Uri const& uri, winrt::hstring const& contentType, HttpClient const& httpClient);
[Windows.Foundation.Metadata.Overload("CreateFromStreamWithDownloaderAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<AdaptiveMediaSourceCreationResult> CreateFromStreamAsync(IInputStream stream, System.Uri uri, string contentType, HttpClient httpClient);
function createFromStreamAsync(stream, uri, contentType, httpClient)
Public Shared Function CreateFromStreamAsync (stream As IInputStream, uri As Uri, contentType As String, httpClient As HttpClient) As IAsyncOperation(Of AdaptiveMediaSourceCreationResult)
Paramètres
- stream
- IInputStream
Flux d’entrée à partir duquel AdaptiveMediaSource est créé.
URI (Uniform Resource Identifier) de la source. Il est utilisé par AdaptiveMediaSource pour résoudre les URI relatifs.
- contentType
-
String
Platform::String
winrt::hstring
Chaîne qui identifie le type de contenu MIME de la source. Il peut s’agir d’un type de contenu HLS (Http Live Streaming) ou Dash (Dynamic Adaptive Streaming over HTTP).
- httpClient
- HttpClient
Le instance HttpClient que AdaptiveMediaSource doit utiliser pour télécharger des ressources. Cela vous permet de spécifier des en-têtes HTTP personnalisés pour les requêtes.
Retours
Retourne une valeur AdaptiveMediaSourceCreationResult en cas de réussite de l’exécution.
- Attributs