Class ProtoDataValueExplanation
Explains the resolved value and origin for one constructor parameter or property.
public sealed record ProtoDataValueExplanation : IEquatable<ProtoDataValueExplanation>
- Inheritance
-
ProtoDataValueExplanation
- Implements
- Inherited Members
- Extension Methods
Constructors
ProtoDataValueExplanation(string, Type, object?, string, string)
Explains the resolved value and origin for one constructor parameter or property.
public ProtoDataValueExplanation(string MemberName, Type ValueType, object? Value, string SourceKind, string Source)
Parameters
Properties
MemberName
public string MemberName { get; init; }
Property Value
Source
public string Source { get; init; }
Property Value
SourceKind
public string SourceKind { get; init; }
Property Value
Value
public object? Value { get; init; }
Property Value
ValueType
public Type ValueType { get; init; }