Class ShareSheetManagerV2.EventStatus
Result for QOL share methods that may generate temporary files.
public sealed record ShareSheetManagerV2.EventStatus
- Inheritance
-
objectShareSheetManagerV2.EventStatus
Constructors
EventStatus(bool, IReadOnlyList<string>)
Result for QOL share methods that may generate temporary files.
public EventStatus(bool Success, IReadOnlyList<string> CreatedFiles)
Parameters
Successbooltrue if the share sheet activity was presented; false otherwise.
CreatedFilesIReadOnlyList<string>Any temporary files created for the event, regardless of Success. DO NOT delete these immediately after the event is invoked, or even after OnResult is invoked. Delete these files later, like on subsequent app launches.
Properties
CreatedFiles
Any temporary files created for the event, regardless of Success. DO NOT delete these immediately after the event is invoked, or even after OnResult is invoked. Delete these files later, like on subsequent app launches.
public IReadOnlyList<string> CreatedFiles { get; init; }
Property Value
- IReadOnlyList<string>
Success
public bool Success { get; init; }
Property Value
- bool