2 instantiations of ShareTextRequest
Microsoft.Maui.Essentials (2)
Share\Share.shared.cs (2)
165
share.RequestAsync(new
ShareTextRequest
(text));
175
share.RequestAsync(new
ShareTextRequest
(text, title));
12 references to ShareTextRequest
Microsoft.Maui.Essentials (12)
Share\Share.netstandard.tvos.watchos.cs (1)
7
Task PlatformRequestAsync(
ShareTextRequest
request) =>
Share\Share.shared.cs (11)
19
/// <param name="request">A <see cref="
ShareTextRequest
"/> object containing the details of the data to share.</param>
21
Task RequestAsync(
ShareTextRequest
request);
63
/// <param name="request">A <see cref="
ShareTextRequest
"/> object containing the details of the data to share.</param>
65
public static Task RequestAsync(
ShareTextRequest
request) =>
104
/// <inheritdoc cref="IShare.RequestAsync(
ShareTextRequest
)"/>
106
/// <exception cref="ArgumentException">Thrown when <see cref="
ShareTextRequest
.Text"/> and <see cref="
ShareTextRequest
.Uri"/> are both <see langword="null"/> or empty.</exception>
107
public Task RequestAsync(
ShareTextRequest
request)
201
/// Initializes a new instance of the <see cref="
ShareTextRequest
"/> class.
208
/// Initializes a new instance of the <see cref="
ShareTextRequest
"/> class with the given text.
215
/// Initializes a new instance of the <see cref="
ShareTextRequest
"/> class with the given text and title.