WebChromeClient.FileChooserParams.ParseResult(Int32, Intent) Method
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.
Parse the result returned by the file picker activity.
[Android.Runtime.Register("parseResult", "(ILandroid/content/Intent;)[Landroid/net/Uri;", "")]
public static Android.Net.Uri[]? ParseResult (int resultCode, Android.Content.Intent data);
[<Android.Runtime.Register("parseResult", "(ILandroid/content/Intent;)[Landroid/net/Uri;", "")>]
static member ParseResult : int * Android.Content.Intent -> Android.Net.Uri[]
Parameters
- resultCode
- Int32
the integer result code returned by the file picker activity.
- data
- Intent
the intent returned by the file picker activity.
Returns
the Uris of selected file(s) or null
if the resultCode indicates
activity canceled or any other error.
- Attributes
Remarks
Parse the result returned by the file picker activity. This method should be used with #createIntent
. Refer to #createIntent
for how to use it.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.