Class FileHandler
public sealed record FileHandler : IEquatable<FileHandler>
- Inheritance
-
FileHandler
- Implements
- Inherited Members
Constructors
FileHandler(string, string, string)
public FileHandler(string Action, string Name, string LaunchType)
Parameters
ActionstringNamestringLaunchTypestringWon't repeat the enums, using string for easy comparison. Same as the other enums below.
Properties
Accepts
Mimic a map, name is the key, accepts is the value.
public ImmutableArray<FileFilter>? Accepts { get; init; }
Property Value
Action
public string Action { get; init; }
Property Value
LaunchType
Won't repeat the enums, using string for easy comparison. Same as the other enums below.
public string LaunchType { get; init; }
Property Value
Name
public string Name { get; init; }