BuildProvider.GetGeneratedType(CompilerResults) Method
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.
Returns a type generated by the build provider from the virtual path.
public:
virtual Type ^ GetGeneratedType(System::CodeDom::Compiler::CompilerResults ^ results);
public virtual Type GetGeneratedType (System.CodeDom.Compiler.CompilerResults results);
abstract member GetGeneratedType : System.CodeDom.Compiler.CompilerResults -> Type
override this.GetGeneratedType : System.CodeDom.Compiler.CompilerResults -> Type
Public Overridable Function GetGeneratedType (results As CompilerResults) As Type
Parameters
- results
- CompilerResults
The compilation results for the build provider's virtual path.
Returns
The type that is generated by the build provider for the virtual path. The base class returns null
.
Remarks
To implement a build provider that generates source code for Web content such as .aspx files, derive a class from the BuildProvider class and override the GetGeneratedType method to return the type generated by the build provider.
The ASP.NET build system compiles files for each build provider, and generates a CompilerResults object, which is passed to the GetGeneratedType method. Typically, a build provider's GetGeneratedType implementation uses the GetType method on the CompiledAssembly property of the input results
object to return the provided type.
Applies to
See also
.NET