Launcher.LaunchUriForResultsAsync 메서드

정의

오버로드

LaunchUriForResultsAsync(Uri, LauncherOptions)

지정된 옵션을 사용하여 지정된 URI의 URI 체계 이름과 연결된 기본 앱을 비동기적으로 시작합니다.

LaunchUriForResultsAsync(Uri, LauncherOptions, ValueSet)

지정된 옵션 및 입력 데이터를 사용하여 지정된 URI의 URI 체계 이름과 연결된 기본 앱을 비동기적으로 시작합니다.

LaunchUriForResultsAsync(Uri, LauncherOptions)

지정된 옵션을 사용하여 지정된 URI의 URI 체계 이름과 연결된 기본 앱을 비동기적으로 시작합니다.

public:
 static IAsyncOperation<LaunchUriResult ^> ^ LaunchUriForResultsAsync(Uri ^ uri, LauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("LaunchUriForResultsAsync")]
 static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(Uri const& uri, LauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("LaunchUriForResultsAsync")]
public static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(System.Uri uri, LauncherOptions options);
function launchUriForResultsAsync(uri, options)
Public Shared Function LaunchUriForResultsAsync (uri As Uri, options As LauncherOptions) As IAsyncOperation(Of LaunchUriResult)

매개 변수

uri
Uri Uri

시작할 URI입니다.

options
LauncherOptions

시작 옵션입니다.

반환

이 메서드가 완료되면 시작 결과를 반환합니다.

특성

설명

결과를 위해 앱을 시작하면 다른 앱에서 앱을 시작하고 둘 간에 데이터를 교환할 수 있습니다.

이 API는 ASTA 스레드(UI 스레드라고도 함) 내에서 호출해야 합니다.

이 메서드를 호출할 때 options 매개 변수는 LauncherOptions.TargetApplicationPackageFamilyName에 대한 유효한 값을 포함해야 합니다.

추가 정보

적용 대상

LaunchUriForResultsAsync(Uri, LauncherOptions, ValueSet)

지정된 옵션 및 입력 데이터를 사용하여 지정된 URI의 URI 체계 이름과 연결된 기본 앱을 비동기적으로 시작합니다.

public:
 static IAsyncOperation<LaunchUriResult ^> ^ LaunchUriForResultsAsync(Uri ^ uri, LauncherOptions ^ options, ValueSet ^ inputData);
/// [Windows.Foundation.Metadata.Overload("LaunchUriForResultsWithDataAsync")]
 static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(Uri const& uri, LauncherOptions const& options, ValueSet const& inputData);
[Windows.Foundation.Metadata.Overload("LaunchUriForResultsWithDataAsync")]
public static IAsyncOperation<LaunchUriResult> LaunchUriForResultsAsync(System.Uri uri, LauncherOptions options, ValueSet inputData);
function launchUriForResultsAsync(uri, options, inputData)
Public Shared Function LaunchUriForResultsAsync (uri As Uri, options As LauncherOptions, inputData As ValueSet) As IAsyncOperation(Of LaunchUriResult)

매개 변수

uri
Uri Uri

시작할 URI입니다.

options
LauncherOptions

시작 옵션입니다.

inputData
ValueSet

시작된 앱에 보낼 데이터입니다.

반환

이 메서드가 완료되면 시작 결과를 반환합니다.

특성

설명

결과를 위해 앱을 시작하면 다른 앱에서 앱을 시작하고 둘 간에 데이터를 교환할 수 있습니다.

이 API는 ASTA 스레드(UI 스레드라고도 함) 내에서 호출해야 합니다.

이 메서드를 호출할 때 options 매개 변수는 LauncherOptions.TargetApplicationPackageFamilyName에 대한 유효한 값을 포함해야 합니다.

추가 정보

적용 대상