2 instantiations of PickOptions
Microsoft.Maui.Essentials (2)
FilePicker\FilePicker.shared.cs (2)
182
new
PickOptions
191
new
PickOptions
19 references to PickOptions
Microsoft.Maui.Essentials (19)
FilePicker\FilePicker.netstandard.watchos.tvos.cs (1)
9
Task<IEnumerable<FileResult>> PlatformPickAsync(
PickOptions
options, bool allowMultiple = false)
FilePicker\FilePicker.shared.cs (18)
25
/// <see cref="
PickOptions
"/> object. Note that this method may re-throw platform specific exceptions that
26
/// occurred during file picking. When calling <see cref="PickAsync(
PickOptions
?)"/> again while showing a file
30
Task<FileResult?> PickAsync(
PickOptions
? options = null);
39
/// <see cref="
PickOptions
"/> object. Note that this method may re-throw platform specific exceptions that
40
/// occurred during file picking. When calling <see cref="PickMultipleAsync(
PickOptions
?)"/> again while showing a file
44
Task<IEnumerable<FileResult>> PickMultipleAsync(
PickOptions
? options = null);
60
/// <see cref="
PickOptions
"/> object. Note that this method may re-throw platform specific exceptions that
61
/// occurred during file picking. When calling <see cref="PickAsync(
PickOptions
?)"/> again while showing a file
65
public static Task<FileResult?> PickAsync(
PickOptions
? options = null) =>
75
/// <see cref="
PickOptions
"/> object. Note that this method may re-throw platform specific exceptions that
76
/// occurred during file picking. When calling <see cref="PickMultipleAsync(
PickOptions
?)"/> again while showing a file
80
public static Task<IEnumerable<FileResult>> PickMultipleAsync(
PickOptions
? options = null) =>
97
public async Task<FileResult?> PickAsync(
PickOptions
? options = null) =>
100
public Task<IEnumerable<FileResult>> PickMultipleAsync(
PickOptions
? options = null) =>
101
PlatformPickAsync(options ??
PickOptions
.Default, true);
181
public static
PickOptions
Default =>
188
/// Predefined <see cref="
PickOptions
"/> object for picking image files only.
190
public static
PickOptions
Images =>