IIncrementalGenerator Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The base interface required to implement an incremental generator
public interface IIncrementalGenerator
type IIncrementalGenerator = interface
Public Interface IIncrementalGenerator
Remarks
The lifetime of a generator is controlled by the compiler. State should not be stored directly on the generator, as there is no guarantee that the same instance will be used on a subsequent generation pass.
Methods
Initialize(IncrementalGeneratorInitializationContext) |
Called to initialize the generator and register generation steps via callbacks
on the |
Extension Methods
AsSourceGenerator(IIncrementalGenerator) |
Converts an IIncrementalGenerator into an ISourceGenerator object that can be used when constructing a GeneratorDriver |