Home
last modified time | relevance | path

Searched refs:AdsObject (Results 1 – 6 of 6) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices/src/System/DirectoryServices/
H A DDirectoryEntryConfiguration.cs24 …n (ReferralChasingOption)((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).GetOption((int)…
34 …((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).SetOption((int)AdsOptions.ADS_OPTION_REF…
42 …return (SecurityMasks)((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).GetOption((int)Ads…
49 …((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).SetOption((int)AdsOptions.ADS_OPTION_SEC…
57 …return (int)((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).GetOption((int)AdsOptions.AD…
64 …((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).SetOption((int)AdsOptions.ADS_OPTION_PAG…
72 …return (int)((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).GetOption((int)AdsOptions.AD…
76 …((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).SetOption((int)AdsOptions.ADS_OPTION_PAS…
91 …((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).SetOption((int)AdsOptions.ADS_OPTION_PAS…
98 …return (string)((UnsafeNativeMethods.IAdsObjectOptions)_entry.AdsObject).GetOption((int)AdsOptions… in GetCurrentServerName()
[all …]
H A DPropertyValueCollection.cs122 _entry.AdsObject.PutEx((int)AdsPropertyOperation.Update, PropertyName, allValues);
189 int unmanagedResult = _entry.AdsObject.GetEx(PropertyName, out var); in PopulateList()
236 _entry.AdsObject.PutEx((int)AdsPropertyOperation.Clear, PropertyName, null); in OnClearComplete()
266 … _entry.AdsObject.PutEx((int)AdsPropertyOperation.Append, PropertyName, allValues); in OnInsertComplete()
272 … _entry.AdsObject.PutEx((int)AdsPropertyOperation.Append, PropertyName, new object[] { value }); in OnInsertComplete()
279 _entry.AdsObject.PutEx((int)AdsPropertyOperation.Update, PropertyName, allValues); in OnInsertComplete()
298 … _entry.AdsObject.PutEx((int)AdsPropertyOperation.Delete, PropertyName, allValues); in OnRemoveComplete()
304 … _entry.AdsObject.PutEx((int)AdsPropertyOperation.Delete, PropertyName, new object[] { value }); in OnRemoveComplete()
311 _entry.AdsObject.PutEx((int)AdsPropertyOperation.Update, PropertyName, allValues); in OnRemoveComplete()
322 _entry.AdsObject.Put(PropertyName, newValue); in OnSetComplete()
[all …]
H A DPropertyCollection.cs56 if (!(_entry.AdsObject is UnsafeNativeMethods.IAdsPropertyList))
61 …feNativeMethods.IAdsPropertyList propList = (UnsafeNativeMethods.IAdsPropertyList)_entry.AdsObject;
75 int unmanagedResult = _entry.AdsObject.GetEx(propertyName, out var); in Contains()
105 if (!(_entry.AdsObject is UnsafeNativeMethods.IAdsPropertyList)) in GetEnumerator()
114 …tiveMethods.IAdsPropertyList propList = (UnsafeNativeMethods.IAdsPropertyList)entryToUse.AdsObject; in GetEnumerator()
227 hr = ((UnsafeNativeMethods.IAdsPropertyList)_entry.AdsObject).Next(out prop); in MoveNext()
252 ((UnsafeNativeMethods.IAdsPropertyList)_entry.AdsObject).Reset(); in Reset()
320 ….IAdsPropertyList propList = (UnsafeNativeMethods.IAdsPropertyList)propCollection._entry.AdsObject;
350 ….IAdsPropertyList propList = (UnsafeNativeMethods.IAdsPropertyList)propCollection._entry.AdsObject;
H A DDirectoryEntry.cs152 internal UnsafeNativeMethods.IAds AdsObject property in System.DirectoryServices.DirectoryEntry
472 if (!(AdsObject is UnsafeNativeMethods.IAdsObjectOptions))
705 if (!(AdsObject is UnsafeNativeMethods.IAdsDeleteOps)) in DeleteTree()
708 UnsafeNativeMethods.IAdsDeleteOps entry = (UnsafeNativeMethods.IAdsDeleteOps)AdsObject; in DeleteTree()
905 if (!(newParent.AdsObject is UnsafeNativeMethods.IAdsContainer)) in MoveTo()
909 if (AdsObject.ADsPath.StartsWith("WinNT:", StringComparison.Ordinal)) in MoveTo()
912 string childPath = AdsObject.ADsPath; in MoveTo()
913 string parentPath = newParent.AdsObject.ADsPath; in MoveTo()
995 AdsObject.GetInfoEx(names, 0); in RefreshCache()
H A DSearchResultCollection.cs72 …_searchObject = (UnsafeNativeMethods.IDirectorySearch)_rootEntry.AdsObject; // get it only once …
H A DDirectorySearcher.cs638 UnsafeNativeMethods.IAds adsObject = clonedRoot.AdsObject; in FindAll()