Class JsonNamedDestination
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
StreamStreamThe stream to load into.
NamestringAn 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
Stream
The stream to load into.
public Stream Stream { get; init; }