Table of Contents

Class Error.NotImplemented

Namespace
Trellis
Assembly
Trellis.Core.dll

HTTP 501 — the requested feature is not implemented.

public sealed record Error.NotImplemented : Error, IEquatable<Error>, IEquatable<Error.NotImplemented>
Inheritance
Error.NotImplemented
Implements
Inherited Members
Extension Methods

Constructors

NotImplemented(string)

HTTP 501 — the requested feature is not implemented.

public NotImplemented(string Feature)

Parameters

Feature string

Identifier of the feature that is not implemented.

Properties

Code

Gets the per-instance machine-readable code. Defaults to Kind; cases whose payload carries a per-instance ReasonCode override this.

public override string Code { get; }

Property Value

string

Feature

Identifier of the feature that is not implemented.

public string Feature { get; init; }

Property Value

string

Kind

Gets the stable, IANA-aligned identifier for this case (e.g. "not-found", "unprocessable-content"). Suitable for telemetry, problem-details type URI synthesis, and wire serialization.

public override string Kind { get; }

Property Value

string