14 references to Private
mscorlib (7)
system\reflection\Associates.cs (2)
84if ((methAttr & MethodAttributes.MemberAccessMask) == MethodAttributes.Private) 167bool isPrivate =(methAttr & MethodAttributes.MemberAccessMask) == MethodAttributes.Private;
system\reflection\emit\customattributebuilder.cs (1)
126(con.Attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.Private)
system\reflection\emit\typebuilder.cs (1)
1769MethodAttributes attr = MethodAttributes.Private | MethodAttributes.Static | MethodAttributes.SpecialName;
system\reflection\methodbase.cs (1)
216public bool IsPrivate { get { return(Attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.Private; } }
system\rttype.cs (1)
742bool isPrivate = methodAccess == MethodAttributes.Private;
system\runtime\interopservices\tceadaptergen\eventproviderwriter.cs (1)
485MethodAttributes.Private,
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (1)
129MethodBuilder mb = _typeBuilder.DefineMethod(name, MethodAttributes.Private | MethodAttributes.Static);
System.Data.Entity (3)
System\Data\Objects\Internal\EntityProxyFactory.cs (3)
1407_entityMemberChanging = typeBuilder.DefineMethod("EntityMemberChanging", MethodAttributes.Private | MethodAttributes.HideBySig, typeof(void), new Type[] { typeof(string) }); 1421_entityMemberChanged = typeBuilder.DefineMethod("EntityMemberChanged", MethodAttributes.Private | MethodAttributes.HideBySig, typeof(void), new Type[] { typeof(string) }); 1663constructorAttributes |= _serializationConstructor.IsPublic? MethodAttributes.Public : MethodAttributes.Private;
System.Data.SqlXml (1)
System\Xml\Xsl\IlGen\XmlILModule.cs (1)
188MethodAttributes.Private | MethodAttributes.Static,
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
46methodAttributes |= MethodAttributes.Private;
System.Xml (1)
System\Xml\Serialization\CodeGenerator.cs (1)
43internal static MethodAttributes PrivateMethodAttributes = MethodAttributes.Private | MethodAttributes.HideBySig;