다음을 통해 공유


Browser.OpenAsync 메서드

정의

오버로드

OpenAsync(String)

브라우저를 지정된 URI로 엽니다.

OpenAsync(Uri)

브라우저를 지정된 URI로 엽니다.

OpenAsync(String, BrowserLaunchMode)

브라우저를 지정된 URI로 엽니다.

OpenAsync(String, BrowserLaunchOptions)

브라우저를 지정된 URI로 엽니다.

OpenAsync(Uri, BrowserLaunchMode)

브라우저를 지정된 URI로 엽니다.

OpenAsync(Uri, BrowserLaunchOptions)

브라우저를 지정된 URI로 엽니다.

OpenAsync(String)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(System::String ^ uri);
public static System.Threading.Tasks.Task<bool> OpenAsync (string uri);
static member OpenAsync : string -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As String) As Task(Of Boolean)

매개 변수

uri
String

열 URI입니다.

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상

OpenAsync(Uri)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(Uri ^ uri);
public static System.Threading.Tasks.Task<bool> OpenAsync (Uri uri);
static member OpenAsync : Uri -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As Uri) As Task(Of Boolean)

매개 변수

uri
Uri

열 URI입니다.

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상

OpenAsync(String, BrowserLaunchMode)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(System::String ^ uri, Microsoft::Maui::ApplicationModel::BrowserLaunchMode launchMode);
public static System.Threading.Tasks.Task<bool> OpenAsync (string uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode);
static member OpenAsync : string * Microsoft.Maui.ApplicationModel.BrowserLaunchMode -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As String, launchMode As BrowserLaunchMode) As Task(Of Boolean)

매개 변수

uri
String

열 URI입니다.

launchMode
BrowserLaunchMode

브라우저를 시작하는 방법

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상

OpenAsync(String, BrowserLaunchOptions)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(System::String ^ uri, Microsoft::Maui::ApplicationModel::BrowserLaunchOptions ^ options);
public static System.Threading.Tasks.Task<bool> OpenAsync (string uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions options);
static member OpenAsync : string * Microsoft.Maui.ApplicationModel.BrowserLaunchOptions -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As String, options As BrowserLaunchOptions) As Task(Of Boolean)

매개 변수

uri
String

열 URI입니다.

options
BrowserLaunchOptions

브라우저에 대한 시작 옵션입니다.

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상

OpenAsync(Uri, BrowserLaunchMode)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(Uri ^ uri, Microsoft::Maui::ApplicationModel::BrowserLaunchMode launchMode);
public static System.Threading.Tasks.Task<bool> OpenAsync (Uri uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode);
static member OpenAsync : Uri * Microsoft.Maui.ApplicationModel.BrowserLaunchMode -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As Uri, launchMode As BrowserLaunchMode) As Task(Of Boolean)

매개 변수

uri
Uri

열 URI입니다.

launchMode
BrowserLaunchMode

브라우저를 시작하는 방법

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상

OpenAsync(Uri, BrowserLaunchOptions)

Source:
Browser.shared.cs
Source:
Browser.shared.cs

브라우저를 지정된 URI로 엽니다.

public:
 static System::Threading::Tasks::Task<bool> ^ OpenAsync(Uri ^ uri, Microsoft::Maui::ApplicationModel::BrowserLaunchOptions ^ options);
public static System.Threading.Tasks.Task<bool> OpenAsync (Uri uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions options);
static member OpenAsync : Uri * Microsoft.Maui.ApplicationModel.BrowserLaunchOptions -> System.Threading.Tasks.Task<bool>
Public Shared Function OpenAsync (uri As Uri, options As BrowserLaunchOptions) As Task(Of Boolean)

매개 변수

uri
Uri

열 URI입니다.

options
BrowserLaunchOptions

브라우저에 대한 시작 옵션입니다.

반환

브라우저가 시작될 때 작업이 완료되었지만 반드시 닫힌 것은 아닙니다. 결과는 시작이 성공했는지 여부를 나타냅니다.

적용 대상