2 instantiations of PropertyEmitter
System.Data.Services.Design (2)
System\Data\EntityModel\Emitters\StructuredTypeEmitter.cs (2)
123PropertyEmitter propertyEmitter = new PropertyEmitter(Generator, property, _usingStandardBaseClass); 189PropertyEmitter propertyEmitter = new PropertyEmitter(Generator, property, UsingStandardBaseClass);
15 references to PropertyEmitter
System.Data.Services.Design (15)
System\Data\EntityModel\Emitters\AttributeEmitter.cs (1)
97public void EmitPropertyAttributes(PropertyEmitter emitter,
System\Data\EntityModel\Emitters\NavigationPropertyEmitter.cs (5)
181PropertyEmitter.AddGetterSetterFixUp(Generator.FixUps, GetFullyQualifiedPropertyName(property.Name), 182PropertyEmitter.GetGetterAccessibility(Item), propertyAccessibility, true); 183PropertyEmitter.AddGetterSetterFixUp(Generator.FixUps, GetFullyQualifiedPropertyName(property.Name), 184PropertyEmitter.GetSetterAccessibility(Item), propertyAccessibility, false); 204property.Attributes |= PropertyEmitter.GetGetterAccessibility(Item);
System\Data\EntityModel\Emitters\PropertyEmitterBase.cs (4)
49if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Assembly 50&& PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Family) 56else if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Family 57&& PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Assembly)
System\Data\EntityModel\Emitters\StructuredTypeEmitter.cs (5)
123PropertyEmitter propertyEmitter = new PropertyEmitter(Generator, property, _usingStandardBaseClass); 189PropertyEmitter propertyEmitter = new PropertyEmitter(Generator, property, UsingStandardBaseClass); 277if (PropertyEmitter.HasDefault(property)) 282if (PropertyEmitter.GetGetterAccessibility(property) != MemberAttributes.Public && 283PropertyEmitter.GetSetterAccessibility(property) != MemberAttributes.Public)