Interface IUnionCaseShape
- Namespace
- PolyType.Abstractions
- Assembly
- PolyType.dll
Provides a strongly typed shape model for a union case in a discriminated union type.
public interface IUnionCaseShape
Properties
Index
Gets the unique index corresponding to the current union case.
int Index { get; }
Property Value
Remarks
Corresponds to the index of this instance in the parent UnionCases list. While similar to Tag, the value of the index is distinct and is not part of the data contract.
IsTagSpecified
Gets a value indicating whether Tag has been explicitly specified or inferred in a less stable way.
bool IsTagSpecified { get; }
Property Value
Name
Gets the unique string identifier for the current union case.
string Name { get; }
Property Value
Remarks
The value is usually the name of the derived type but can be overridden via the Name property.
Tag
Gets the unique integer identifier for the current union case.
int Tag { get; }
Property Value
Remarks
The value typically corresponds to the order of DerivedTypeShapeAttribute declarations but can be overridden via the Tag property.
Type
Gets the underlying type shape of the union case.
ITypeShape Type { get; }
Property Value
Methods
Accept(TypeShapeVisitor, object?)
Accepts an TypeShapeVisitor for strongly-typed traversal.
object? Accept(TypeShapeVisitor visitor, object? state = null)
Parameters
visitor
TypeShapeVisitorThe visitor to accept.
state
objectThe state parameter to pass to the underlying visitor.