Class GetAppManifestResult
public sealed record GetAppManifestResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetAppManifestResult>
- Inheritance
-
EmptyResultGetAppManifestResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetAppManifestResult(string, ImmutableArray<AppManifestError>, string?, AppManifestParsedProperties?, WebAppManifest)
public GetAppManifestResult(string Url, ImmutableArray<AppManifestError> Errors, string? Data, AppManifestParsedProperties? Parsed, WebAppManifest Manifest)
Parameters
UrlstringManifest location.
ErrorsImmutableArray<AppManifestError>DatastringManifest content.
ParsedAppManifestParsedPropertiesParsed manifest properties. Deprecated, use manifest instead.
ManifestWebAppManifest
Properties
Data
Manifest content.
public string? Data { get; init; }
Property Value
Errors
public ImmutableArray<AppManifestError> Errors { get; init; }
Property Value
Manifest
public WebAppManifest Manifest { get; init; }
Property Value
Parsed
Parsed manifest properties. Deprecated, use manifest instead.
public AppManifestParsedProperties? Parsed { get; init; }
Property Value
Url
Manifest location.
public string Url { get; init; }