Class GetAppManifestCommandResponse
Response for Gets the processed manifest for this current document. This API always waits for the manifest to be loaded. If manifestId is provided, and it does not match the manifest of the current document, this API errors out. If there is not a loaded page, this API errors out immediately.
public sealed class GetAppManifestCommandResponse : ICommandResponse<GetAppManifestCommandSettings>, ICommandResponse
- Inheritance
-
GetAppManifestCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
Data
Manifest content.
[JsonPropertyName("data")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Data { get; set; }
Property Value
Errors
Gets or sets the errors
[JsonPropertyName("errors")]
public AppManifestError[] Errors { get; set; }
Property Value
Manifest
Gets or sets the manifest
[JsonPropertyName("manifest")]
public WebAppManifest Manifest { get; set; }
Property Value
Parsed
Parsed manifest properties. Deprecated, use manifest instead.
[JsonPropertyName("parsed")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AppManifestParsedProperties? Parsed { get; set; }
Property Value
Url
Manifest location.
[JsonPropertyName("url")]
public string Url { get; set; }