6 references to Family
mscorlib (1)
system\reflection\methodbase.cs (1)
218public bool IsFamily { get { return(Attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.Family; } }
System.Data.Entity (2)
System\Data\Objects\Internal\EntityProxyFactory.cs (2)
570((ctor.Attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.Family) || 590access == MethodAttributes.Family ||
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
40methodAttributes |= MethodAttributes.Family;
System.Xml (2)
System\Xml\Serialization\CodeGenerator.cs (1)
42internal static MethodAttributes ProtectedOverrideMethodAttributes = MethodAttributes.Family | MethodAttributes.Virtual | MethodAttributes.HideBySig;
System\Xml\Serialization\XmlSerializationILGen.cs (1)
288MethodAttributes.Family | MethodAttributes.HideBySig | MethodAttributes.SpecialName | MethodAttributes.RTSpecialName);