2 instantiations of CodeTypeDelegate
System.Data (1)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
1002CodeTypeDelegate delegateClass = new CodeTypeDelegate(stRowClassName + "ChangeEventHandler"); {
System.Web.Services (1)
System\Web\Services\Description\WebCodeGenerator.cs (1)
269CodeTypeDelegate handler = new CodeTypeDelegate(handlerType);
28 references to CodeTypeDelegate
System (21)
compmod\microsoft\csharp\csharpcodeprovider.cs (7)
321if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 336if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 351if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 366if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 381if (currentClass != null && currentClass is CodeTypeDelegate) { 2399CodeTypeDelegate del = (CodeTypeDelegate)e;
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
2185CodeTypeDelegate del = (CodeTypeDelegate)e;
compmod\system\codedom\CodeTypeDelegate.cs (2)
35/// Initializes a new instance of <see cref='System.CodeDom.CodeTypeDelegate'/>. 47/// Initializes a new instance of <see cref='System.CodeDom.CodeTypeDelegate'/>.
compmod\system\codedom\compiler\CodeGenerator.cs (5)
97if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 112if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 127if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 142if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 157if (currentClass != null && currentClass is CodeTypeDelegate) {
compmod\system\codedom\compiler\CodeValidator.cs (5)
333CodeTypeDelegate del = (CodeTypeDelegate)e; 829if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 838if (currentClass != null && !(currentClass is CodeTypeDelegate)) { 847if (currentClass != null && currentClass is CodeTypeDelegate) {
System.Data (2)
fx\src\data\System\Data\CodeGen\datacache.cs (2)
999private CodeTypeDelegate CreateTypedRowEventHandler(DataTable table) { 1002CodeTypeDelegate delegateClass = new CodeTypeDelegate(stRowClassName + "ChangeEventHandler"); {
System.Web.Services (1)
System\Web\Services\Description\WebCodeGenerator.cs (1)
269CodeTypeDelegate handler = new CodeTypeDelegate(handlerType);
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (4)
211else if (codeDomTypes[0] is CodeTypeDelegate) 1095if (codeDomType is CodeTypeDelegate && typeof(T) == typeof(MethodInfo)) 1100foreach (CodeParameterDeclarationExpression parameterDecl in ((CodeTypeDelegate)codeDomType).Parameters) 1102invokeMethod.ReturnType = ((CodeTypeDelegate)codeDomType).ReturnType;