6 writes to _propertyEntry
System.DirectoryServices (6)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (6)
149_propertyEntry = propertyEntry; 194_propertyEntry = GetSchemaPropertyDirectoryEntry(); 212_propertyEntry = propertyEntry; 254_propertyEntry = null; 321_propertyEntry = _schemaEntry.Children.Add(rdn, "attributeSchema"); 1287_propertyEntry = DirectoryEntryManager.GetDirectoryEntry(_context, (string)GetValueFromCache(PropertyManager.DistinguishedName, true)!);
42 references to _propertyEntry
System.DirectoryServices (42)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (42)
251if (_propertyEntry != null) 253_propertyEntry.Dispose(); 349_propertyEntry.Properties[PropertyManager.IsSingleValued].Value = _isSingleValued; 352_propertyEntry.Properties[PropertyManager.IsMemberOfPartialAttributeSet].Value = _isInGlobalCatalog; 355_propertyEntry.Properties[PropertyManager.IsDefunct].Value = _isDefunct; 360_propertyEntry.Properties[PropertyManager.RangeLower].Value = (int)_rangeLower.Value; 366_propertyEntry.Properties[PropertyManager.RangeUpper].Value = (int)_rangeUpper.Value; 372_propertyEntry.Properties[PropertyManager.SearchFlags].Value = (int)_searchFlags; 378_propertyEntry.Properties[PropertyManager.LinkID].Value = (int)_linkId.Value; 391_propertyEntry!.CommitChanges(); 468Debug.Assert(_propertyEntry != null); 470return DirectoryEntryManager.GetDirectoryEntryInternal(_context, _propertyEntry.Path); 673Debug.Assert(_propertyEntry != null); 676_propertyEntry.Properties[PropertyManager.IsSingleValued].Value = value; 823Debug.Assert(_propertyEntry != null); 826_propertyEntry.Properties[PropertyManager.IsMemberOfPartialAttributeSet].Value = value; 866Debug.Assert(_propertyEntry != null); 871if (_propertyEntry.Properties.Contains(PropertyManager.RangeLower)) 873_propertyEntry.Properties[PropertyManager.RangeLower].Clear(); 878_propertyEntry.Properties[PropertyManager.RangeLower].Value = (int)value.Value; 919Debug.Assert(_propertyEntry != null); 924if (_propertyEntry.Properties.Contains(PropertyManager.RangeUpper)) 926_propertyEntry.Properties[PropertyManager.RangeUpper].Clear(); 931_propertyEntry.Properties[PropertyManager.RangeUpper].Value = (int)value.Value; 1035Debug.Assert(_propertyEntry != null); 1040if (_propertyEntry.Properties.Contains(PropertyManager.LinkID)) 1042_propertyEntry.Properties[PropertyManager.LinkID].Clear(); 1047_propertyEntry.Properties[PropertyManager.LinkID].Value = (int)value.Value; 1284if (_propertyEntry == null) 1290return _propertyEntry; 1331Debug.Assert(_propertyEntry != null); 1334_propertyEntry.Properties[PropertyManager.SearchFlags].Value = (int)_searchFlags; 1347Debug.Assert(_propertyEntry != null); 1350_propertyEntry.Properties[PropertyManager.SearchFlags].Value = (int)_searchFlags; 1358Debug.Assert(_propertyEntry != null); 1362if (_propertyEntry.Properties.Contains(propertyName)) 1364_propertyEntry.Properties[propertyName].Clear(); 1369_propertyEntry.Properties[propertyName].Value = value; 1394Debug.Assert(_propertyEntry != null); 1396_propertyEntry.Properties[PropertyManager.AttributeSyntax].Value = s_syntaxes[(int)syntax].attributeSyntax; 1397_propertyEntry.Properties[PropertyManager.OMSyntax].Value = s_syntaxes[(int)syntax].oMSyntax; 1401_propertyEntry.Properties[PropertyManager.OMObjectClass].Value = oMObjectClass.Data;