2 implementations of IShare
Microsoft.Maui.Essentials (2)
Share\Share.netstandard.tvos.watchos.cs (1)
5
partial class ShareImplementation :
IShare
Share\Share.shared.cs (1)
102
partial class ShareImplementation :
IShare
13 references to IShare
Microsoft.Maui.Essentials (13)
Share\Share.shared.cs (13)
84
static
IShare
Current => ApplicationModel.DataTransfer.Share.Default;
86
static
IShare
? defaultImplementation;
91
public static
IShare
Default =>
94
internal static void SetDefault(
IShare
? implementation) =>
100
/// Concrete implementation of the <see cref="
IShare
"/> APIs.
104
/// <inheritdoc cref="
IShare
.RequestAsync(ShareTextRequest)"/>
118
/// <inheritdoc cref="
IShare
.RequestAsync(ShareFileRequest)"/>
132
/// <inheritdoc cref="
IShare
.RequestAsync(ShareMultipleFilesRequest)"/>
154
/// Static class with extension methods for the <see cref="
IShare
"/> APIs.
164
public static Task RequestAsync(this
IShare
share, string text) =>
174
public static Task RequestAsync(this
IShare
share, string text, string title) =>
179
/// Base class for the different share requests that can be used with the <see cref="
IShare
"/> API.
362
/// A representation of a file that can be used with the <see cref="
IShare
"/> API.