Class SourceGenTypeShape<T>
- Namespace
- PolyType.SourceGenModel
- Assembly
- PolyType.dll
Source generator model for type shapes.
public abstract class SourceGenTypeShape<T> : ITypeShape<T>, ITypeShape
Type Parameters
T
The type that the shape describes.
- Inheritance
-
SourceGenTypeShape<T>
- Implements
-
ITypeShape<T>
- Derived
- Inherited Members
Properties
Kind
Gets the TypeShapeKind that the current shape supports.
public abstract TypeShapeKind Kind { get; }
Property Value
Provider
Gets the provider used to generate this instance.
public required ITypeShapeProvider Provider { get; init; }
Property Value
Methods
Accept(TypeShapeVisitor, object?)
Accepts an TypeShapeVisitor for strongly-typed traversal.
public abstract object? Accept(TypeShapeVisitor visitor, object? state = null)
Parameters
visitor
TypeShapeVisitorThe visitor to accept.
state
objectThe state parameter to pass to the underlying visitor.
Returns
GetAssociatedTypeFactory(Type)
Gets the factory for a type associated to this property's declared Type, as captured in AssociatedTypes or AssociatedTypes.
public virtual Func<object>? GetAssociatedTypeFactory(Type associatedType)
Parameters
associatedType
TypeThe associated type (which must be one found in the AssociatedTypes property). If the associated type is a generic type definition, the type arguments used on this shape's Type will be used to close the associated generic type.
Returns
- Func<object>
A factory for the associated type, or null if no factory for the associated type is available.
Remarks
ReflectionTypeShapeProvider can produce the factory on demand without any AssociatedTypes, while SourceGenTypeShapeProvider is expected to only produce the factory that was explicitly requested via attribute.
Exceptions
- InvalidOperationException
Thrown when this method is called on an instance that does not represent a generic type.