Class JsonNamedDestination

Namespace
Wolfgang.Etl.Json
Assembly
Wolfgang.Etl.Json.dll

Associates a Stream with an optional human-readable name for progress reporting.

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

Constructors

JsonNamedDestination(Stream, string?)

Associates a Stream with an optional human-readable name for progress reporting.

public JsonNamedDestination(Stream Stream, string? Name = null)

Parameters

Stream Stream

The stream to load into.

Name string

An optional name identifying the stream (e.g. a file path or blob key). Surfaced in CurrentSourceName during loading.

Properties

Name

An optional name identifying the stream (e.g. a file path or blob key). Surfaced in CurrentSourceName during loading.

public string? Name { get; init; }

Property Value

string

Stream

The stream to load into.

public Stream Stream { get; init; }

Property Value

Stream