Class InstallabilityError
The installability error
public sealed record InstallabilityError : IEquatable<InstallabilityError>
- Inheritance
-
InstallabilityError
- Implements
- Inherited Members
Constructors
InstallabilityError(string, ImmutableArray<InstallabilityErrorArgument>)
The installability error
public InstallabilityError(string ErrorId, ImmutableArray<InstallabilityErrorArgument> ErrorArguments)
Parameters
ErrorIdstringThe error id (e.g. 'manifest-missing-suitable-icon').
ErrorArgumentsImmutableArray<InstallabilityErrorArgument>The list of error arguments (e.g. {name:'minimum-icon-size-in-pixels', value:'64'}).
Properties
ErrorArguments
The list of error arguments (e.g. {name:'minimum-icon-size-in-pixels', value:'64'}).
public ImmutableArray<InstallabilityErrorArgument> ErrorArguments { get; init; }
Property Value
ErrorId
The error id (e.g. 'manifest-missing-suitable-icon').
public string ErrorId { get; init; }