[]
Enables custom control builders to access the generated Code Document Object Model (CodeDom) and insert and modify code during the process of parsing and building controls.
public override void ProcessGeneratedCode(CodeCompileUnit codeCompileUnit, CodeTypeDeclaration baseType, CodeTypeDeclaration derivedType, CodeMemberMethod buildMethod, CodeMemberMethod dataBindingMethod)
Public Overrides Sub ProcessGeneratedCode(codeCompileUnit As CodeCompileUnit, baseType As CodeTypeDeclaration, derivedType As CodeTypeDeclaration, buildMethod As CodeMemberMethod, dataBindingMethod As CodeMemberMethod)
Type | Name | Description |
---|---|---|
CodeCompileUnit | codeCompileUnit | The root container of a CodeDOM graph of the control that is being built. |
CodeTypeDeclaration | baseType | The base type of the page or user control that contains the control that is being built. |
CodeTypeDeclaration | derivedType | The derived type of the page or user control that contains the control that is being built. |
CodeMemberMethod | buildMethod | The code that is used to build the control. |
CodeMemberMethod | dataBindingMethod | The code that is used to build the data-binding method of the control. |