14 references to Private
mscorlib (7)
system\reflection\Associates.cs (2)
84
if ((methAttr & MethodAttributes.MemberAccessMask) == MethodAttributes.
Private
)
167
bool 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)
1769
MethodAttributes attr = MethodAttributes.
Private
| MethodAttributes.Static | MethodAttributes.SpecialName;
system\reflection\methodbase.cs (1)
216
public bool IsPrivate { get { return(Attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.
Private
; } }
system\rttype.cs (1)
742
bool isPrivate = methodAccess == MethodAttributes.
Private
;
system\runtime\interopservices\tceadaptergen\eventproviderwriter.cs (1)
485
MethodAttributes.
Private
,
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (1)
129
MethodBuilder 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) });
1663
constructorAttributes |= _serializationConstructor.IsPublic? MethodAttributes.Public : MethodAttributes.
Private
;
System.Data.SqlXml (1)
System\Xml\Xsl\IlGen\XmlILModule.cs (1)
188
MethodAttributes.
Private
| MethodAttributes.Static,
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
46
methodAttributes |= MethodAttributes.
Private
;
System.Xml (1)
System\Xml\Serialization\CodeGenerator.cs (1)
43
internal static MethodAttributes PrivateMethodAttributes = MethodAttributes.
Private
| MethodAttributes.HideBySig;