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