19 references to Private
mscorlib (6)
system\reflection\fieldinfo.cs (1)
155public bool IsPrivate { get { return(Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Private; } }
system\rttype.cs (2)
958if (fieldAccess == FieldAttributes.Private) 1012bool isPrivate = fieldAccess == FieldAttributes.Private;
system\runtime\interopservices\tceadaptergen\eventproviderwriter.cs (3)
45FieldAttributes.Private 52FieldAttributes.Private 59FieldAttributes.Private
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
308return _typeBuilder.DefineField("<ExpressionCompilerImplementationDetails>{" + Interlocked.Increment(ref _Counter) + "}" + name, type, FieldAttributes.Static | FieldAttributes.Private);
System.Data.Entity (5)
System\Data\Objects\Internal\EntityProxyFactory.cs (5)
890FieldBuilder interceptorField = typeBuilder.DefineField(GetInterceptorFieldName(baseProperty.Name), interceptorType, FieldAttributes.Private | FieldAttributes.Static); 1141_resetFKSetterFlagField = typeBuilder.DefineField(EntityProxyFactory.ResetFKSetterFlagFieldName, typeof(Action<object>), FieldAttributes.Private| FieldAttributes.Static); 1142_compareByteArraysField = typeBuilder.DefineField(EntityProxyFactory.CompareByteArraysFieldName, typeof(Func<object, object, bool>), FieldAttributes.Private | FieldAttributes.Static); 1403_changeTrackerField = typeBuilder.DefineField("_changeTracker", typeof(IEntityChangeTracker), FieldAttributes.Private); 1446_relationshipManagerField = typeBuilder.DefineField("_relationshipManager", typeof(RelationshipManager), FieldAttributes.Private);
System.Data.SqlXml (2)
System\Xml\Xsl\IlGen\XmlILModule.cs (2)
255return this.typeBldr.DefineInitializedData(name, data, FieldAttributes.Private | FieldAttributes.Static); 263return this.typeBldr.DefineField(fieldName, type, FieldAttributes.Private | FieldAttributes.Static);
System.Web.Extensions (1)
UI\WebControls\Dynamic.cs (1)
339FieldBuilder fb = tb.DefineField("_" + dp.Name, dp.Type, FieldAttributes.Private);
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
82fieldAttributes |= FieldAttributes.Private;
System.Xml (3)
System\Xml\Serialization\XmlSerializationILGen.cs (1)
131FieldAttributes.Private
System\Xml\Serialization\XmlSerializationReaderILGen.cs (2)
977FieldAttributes.Private 1839idNameFields.Add(name, this.typeBuilder.DefineField(idName, typeof(string), FieldAttributes.Private));