BuildProvider::GetGeneratedType Method
Returns a type generated by the build provider from the virtual path.
Assembly: System.Web (in System.Web.dll)
Parameters
- results
- Type: System.CodeDom.Compiler::CompilerResults
The compilation results for the build provider's virtual path.
Return Value
Type: System::TypeThe type that is generated by the build provider for the virtual path. The base class returns nullptr.
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.