Table of Contents

Class SourceGenSurrogateTypeShape<T, TSurrogate>

Namespace
PolyType.SourceGenModel
Assembly
PolyType.dll

Source generator model for surrogate type shapes.

public sealed class SourceGenSurrogateTypeShape<T, TSurrogate> : SourceGenTypeShape<T>, ISurrogateTypeShape<T, TSurrogate>, ITypeShape<T>, ISurrogateTypeShape, ITypeShape

Type Parameters

T

The type that the shape describes.

TSurrogate

The surrogate type used by the shape.

Inheritance
SourceGenSurrogateTypeShape<T, TSurrogate>
Implements
ISurrogateTypeShape<T, TSurrogate>
Inherited Members

Properties

Kind

Gets the TypeShapeKind that the current shape supports.

public override TypeShapeKind Kind { get; }

Property Value

TypeShapeKind

Marshaller

Gets the marshaller to TSurrogate.

public required IMarshaller<T, TSurrogate> Marshaller { get; init; }

Property Value

IMarshaller<T, TSurrogate>

SurrogateType

Gets the shape of the surrogate type.

public required ITypeShape<TSurrogate> SurrogateType { get; init; }

Property Value

ITypeShape<TSurrogate>

Methods

Accept(TypeShapeVisitor, object?)

Accepts an TypeShapeVisitor for strongly-typed traversal.

public override object? Accept(TypeShapeVisitor visitor, object? state = null)

Parameters

visitor TypeShapeVisitor

The visitor to accept.

state object

The state parameter to pass to the underlying visitor.

Returns

object

The object result returned by the visitor.