17 references to GlobalReference
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
3256if ((typeRef.Options & CodeTypeReferenceOptions.GlobalReference) != 0) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
2682if((typeRef.Options & CodeTypeReferenceOptions.GlobalReference) != 0) {
System.Data.Entity.Design (4)
System\Data\EntityModel\Emitters\TypeReference.cs (4)
73CodeTypeReference value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 89CodeTypeReference typeRef = new CodeTypeReference(generic, CodeTypeReferenceOptions.GlobalReference); 124value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 229CodeTypeReference typeRef = new CodeTypeReference(typeof(System.Nullable<>), CodeTypeReferenceOptions.GlobalReference);
System.Data.Services.Design (9)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (4)
728CodeTypeReferenceOptions.GlobalReference), new CodeAttributeArgument(new CodePrimitiveExpression(entitySet.Name))); 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 (4)
62CodeTypeReference value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 78CodeTypeReference typeRef = new CodeTypeReference(generic, CodeTypeReferenceOptions.GlobalReference); 116value = new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference); 192CodeTypeReference typeRef = new CodeTypeReference(typeof(System.Nullable<>), CodeTypeReferenceOptions.GlobalReference);
System.Web (2)
Compilation\CodeDOMUtility.cs (2)
359return new CodeTypeReference(typeName, CodeTypeReferenceOptions.GlobalReference); 363return new CodeTypeReference(type, CodeTypeReferenceOptions.GlobalReference);