12 references to CodeTypeReference
System.Data.Entity.Design (3)
System\Data\EntityModel\Emitters\TypeReference.cs (3)
73CodeTypeReference value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 89CodeTypeReference typeRef = new CodeTypeReference(generic, CodeTypeReferenceOptions.GlobalReference); 229CodeTypeReference typeRef = new CodeTypeReference(typeof(System.Nullable<>), CodeTypeReferenceOptions.GlobalReference);
System.Data.Services.Design (8)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (4)
727new CodeTypeReference(typeof(System.Data.Services.Common.EntitySetAttribute), 774propertyChangedEvent.Type = new CodeTypeReference(typeof(System.ComponentModel.PropertyChangedEventHandler), CodeTypeReferenceOptions.GlobalReference); 785propertyChangedMethod.Parameters.Add(new CodeParameterDeclarationExpression(new CodeTypeReference(typeof(System.String), CodeTypeReferenceOptions.GlobalReference), "property")); 801new CodeObjectCreateExpression(new CodeTypeReference(typeof(System.ComponentModel.PropertyChangedEventArgs), CodeTypeReferenceOptions.GlobalReference), new CodeArgumentReferenceExpression("property"))
System\Data\EntityModel\Emitters\SchemaTypeEmitter.cs (1)
99typeDecl.BaseTypes.Add(new CodeTypeReference(interfaceType, CodeTypeReferenceOptions.GlobalReference));
System\Data\EntityModel\Emitters\TypeReference.cs (3)
62CodeTypeReference value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 78CodeTypeReference typeRef = new CodeTypeReference(generic, CodeTypeReferenceOptions.GlobalReference); 192CodeTypeReference typeRef = new CodeTypeReference(typeof(System.Nullable<>), CodeTypeReferenceOptions.GlobalReference);
System.Web (1)
Compilation\CodeDOMUtility.cs (1)
363return new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference);