AdaptiveMediaSource.CreateFromStreamAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
CreateFromStreamAsync(IInputStream, Uri, String) |
제공된 입력 스트림에서 AdaptiveMediaSource 개체를 비동기적으로 만듭니다. |
CreateFromStreamAsync(IInputStream, Uri, String, HttpClient) |
제공된 입력 스트림에서 AdaptiveMediaSource 개체를 비동기적으로 만듭니다. |
CreateFromStreamAsync(IInputStream, Uri, String)
제공된 입력 스트림에서 AdaptiveMediaSource 개체를 비동기적으로 만듭니다.
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)
매개 변수
- stream
- IInputStream
AdaptiveMediaSource가 만들어지는 입력 스트림입니다.
원본의 URI(Uniform Resource Identifier)입니다. 이는 AdaptiveMediaSource에서 상대 URI를 resolve 데 사용됩니다.
- contentType
-
String
Platform::String
winrt::hstring
원본의 MIME 콘텐츠 형식을 식별하는 문자열입니다. HTTP HLS(라이브 스트리밍) 또는 DASH(Dynamic Adaptive Streaming over HTTP) 콘텐츠 형식일 수 있습니다.
반환
성공적으로 완료되면 AdaptiveMediaSourceCreationResult 를 반환합니다.
- 특성
추가 정보
적용 대상
CreateFromStreamAsync(IInputStream, Uri, String, HttpClient)
제공된 입력 스트림에서 AdaptiveMediaSource 개체를 비동기적으로 만듭니다.
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)
매개 변수
- stream
- IInputStream
AdaptiveMediaSource가 만들어지는 입력 스트림입니다.
원본의 URI(Uniform Resource Identifier)입니다. 이는 AdaptiveMediaSource에서 상대 URI를 resolve 데 사용됩니다.
- contentType
-
String
Platform::String
winrt::hstring
원본의 MIME 콘텐츠 형식을 식별하는 문자열입니다. HTTP HLS(라이브 스트리밍) 또는 DASH(Dynamic Adaptive Streaming over HTTP) 콘텐츠 형식일 수 있습니다.
- httpClient
- HttpClient
HttpClient는 AdaptiveMediaSource가 리소스를 다운로드하는 데 사용해야 하는 instance. 이렇게 하면 요청에 대한 사용자 지정 HTTP 헤더를 지정할 수 있습니다.
반환
성공적으로 완료되면 AdaptiveMediaSourceCreationResult 를 반환합니다.
- 특성