Table of Contents

Class HtmlAttribute

Namespace
Xping.Sdk.Validations.Content
Assembly
Xping.Sdk.dll

Represents an HTML attribute with a name and value.

public record HtmlAttribute : IEquatable<HtmlAttribute>
Inheritance
HtmlAttribute
Implements
Inherited Members

Constructors

HtmlAttribute(string, string)

Represents an HTML attribute with a name and value.

public HtmlAttribute(string Name, string Value)

Parameters

Name string

The qualified name of the attribute.

Value string

The value of the attribute.

Properties

Name

The qualified name of the attribute.

public string Name { get; init; }

Property Value

string

Value

The value of the attribute.

public string Value { get; init; }

Property Value

string