ISourceGenerator 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 a source generator
public interface ISourceGenerator
type ISourceGenerator = interface
Public Interface ISourceGenerator
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
Execute(GeneratorExecutionContext) |
Called to perform source generation. A generator can use the |
Execute(SourceGeneratorContext) |
Called to perform source generation. A generator can use the |
Initialize(GeneratorInitializationContext) |
Called before generation occurs. A generator can use the |
Initialize(InitializationContext) |
Called before generation occurs. A generator can use the |
Extension Methods
GetGeneratorType(ISourceGenerator) |
Returns the underlying type of a given generator |
Applies to
.NET