Table of Contents

Class Column

Namespace
Dynamicweb.Data.Firehose
Assembly
Dynamicweb.Core.dll

Represents a single value for a column.

public sealed record Column : IEquatable<Column>
Inheritance
Column
Implements
Inherited Members

Remarks

The Column record is typically used to encapsulate metadata and value information for a column in tabular data, such as a database row. All properties are required except for the value, which may be null to represent missing or undefined data. The Index property indicates the zero-based position of the column within its containing structure.

Properties

Index

Gets or sets the zero-based index of the column position.

public int Index { get; set; }

Property Value

int

Name

Gets the name of the column.

public required string Name { get; init; }

Property Value

string

Value

Gets the value of the cell in the column.

public required object? Value { get; init; }

Property Value

object
To top