Udostępnij za pośrednictwem


FilePicker.PickMultipleAsync(PickOptions) Method

Definition

Starts file picker for selecting a single file.

public static System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Xamarin.Essentials.FileResult>> PickMultipleAsync (Xamarin.Essentials.PickOptions options = null);

Parameters

options
PickOptions

File picker options to use; may be null

Returns

System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FileResult>>

File picking result object, or null when picking was cancelled by the user.

Remarks

File types can be specified in order to limit files that can be selected, using a PickOptions object. Note that this method may re-throw platform specific exceptions that occured during file picking. When calling PickMultipleAsync() again while showing a file picker, the Task object that was returned from the first call is cancelled. Be sure to also handle the TaskCanceledException in this case.

Applies to