12 references to AdsPropertyOperation
System.DirectoryServices (12)
System\DirectoryServices\DirectoryEntry.cs (1)
1147
newSDEntry.ControlCode = (int)
AdsPropertyOperation
.Update;
System\DirectoryServices\PropertyValueCollection.cs (11)
120
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Update, PropertyName, allValues);
228
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Clear, PropertyName, null);
258
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Append, PropertyName, allValues);
264
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Append, PropertyName, new object?[] { value });
271
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Update, PropertyName, allValues);
290
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Delete, PropertyName, allValues);
296
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Delete, PropertyName, new object?[] { value });
303
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Update, PropertyName, allValues);
320
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Delete, PropertyName, new object?[] { oldValue });
321
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Append, PropertyName, new object?[] { newValue });
327
_entry.AdsObject.PutEx((int)
AdsPropertyOperation
.Update, PropertyName, allValues);