Table of Contents

Class GetAppManifestResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Page
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetAppManifestResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetAppManifestResult>
Inheritance
EmptyResult
GetAppManifestResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetAppManifestResult(string, ImmutableArray<AppManifestError>, string?, AppManifestParsedProperties?, WebAppManifest)

public GetAppManifestResult(string Url, ImmutableArray<AppManifestError> Errors, string? Data, AppManifestParsedProperties? Parsed, WebAppManifest Manifest)

Parameters

Url string

Manifest location.

Errors ImmutableArray<AppManifestError>
Data string

Manifest content.

Parsed AppManifestParsedProperties

Parsed manifest properties. Deprecated, use manifest instead.

Manifest WebAppManifest

Properties

Data

Manifest content.

public string? Data { get; init; }

Property Value

string

Errors

public ImmutableArray<AppManifestError> Errors { get; init; }

Property Value

ImmutableArray<AppManifestError>

Manifest

public WebAppManifest Manifest { get; init; }

Property Value

WebAppManifest

Parsed

Parsed manifest properties. Deprecated, use manifest instead.

public AppManifestParsedProperties? Parsed { get; init; }

Property Value

AppManifestParsedProperties

Url

Manifest location.

public string Url { get; init; }

Property Value

string