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)
251
if (
_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();
468
Debug.Assert(
_propertyEntry
!= null);
470
return DirectoryEntryManager.GetDirectoryEntryInternal(_context,
_propertyEntry
.Path);
673
Debug.Assert(
_propertyEntry
!= null);
676
_propertyEntry
.Properties[PropertyManager.IsSingleValued].Value = value;
823
Debug.Assert(
_propertyEntry
!= null);
826
_propertyEntry
.Properties[PropertyManager.IsMemberOfPartialAttributeSet].Value = value;
866
Debug.Assert(
_propertyEntry
!= null);
871
if (
_propertyEntry
.Properties.Contains(PropertyManager.RangeLower))
873
_propertyEntry
.Properties[PropertyManager.RangeLower].Clear();
878
_propertyEntry
.Properties[PropertyManager.RangeLower].Value = (int)value.Value;
919
Debug.Assert(
_propertyEntry
!= null);
924
if (
_propertyEntry
.Properties.Contains(PropertyManager.RangeUpper))
926
_propertyEntry
.Properties[PropertyManager.RangeUpper].Clear();
931
_propertyEntry
.Properties[PropertyManager.RangeUpper].Value = (int)value.Value;
1035
Debug.Assert(
_propertyEntry
!= null);
1040
if (
_propertyEntry
.Properties.Contains(PropertyManager.LinkID))
1042
_propertyEntry
.Properties[PropertyManager.LinkID].Clear();
1047
_propertyEntry
.Properties[PropertyManager.LinkID].Value = (int)value.Value;
1284
if (
_propertyEntry
== null)
1290
return
_propertyEntry
;
1331
Debug.Assert(
_propertyEntry
!= null);
1334
_propertyEntry
.Properties[PropertyManager.SearchFlags].Value = (int)_searchFlags;
1347
Debug.Assert(
_propertyEntry
!= null);
1350
_propertyEntry
.Properties[PropertyManager.SearchFlags].Value = (int)_searchFlags;
1358
Debug.Assert(
_propertyEntry
!= null);
1362
if (
_propertyEntry
.Properties.Contains(propertyName))
1364
_propertyEntry
.Properties[propertyName].Clear();
1369
_propertyEntry
.Properties[propertyName].Value = value;
1394
Debug.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;