Table of Contents

Class ShareSheetManagerV2.EventStatus

Namespace
Uralstech.UShare

Result for QOL share methods that may generate temporary files.

public sealed record ShareSheetManagerV2.EventStatus
Inheritance
object
ShareSheetManagerV2.EventStatus

Constructors

EventStatus(bool, IReadOnlyList<string>)

Result for QOL share methods that may generate temporary files.

public EventStatus(bool Success, IReadOnlyList<string> CreatedFiles)

Parameters

Success bool

true if the share sheet activity was presented; false otherwise.

CreatedFiles IReadOnlyList<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

true if the share sheet activity was presented; false otherwise.

public bool Success { get; init; }

Property Value

bool