9 writes to current
System.DirectoryServices.AccountManagement (9)
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (9)
214this.current = SDSUtils.BuildDirectoryEntry( 341this.current = currentSR; 513this.current = memberDE; 674this.current = null; 789this.current = null; 896this.current = (SearchResult)_queryMembersResultEnumerator.Current; 948this.current = null; 1071this.current = null; 1134this.current = adBookmark.current;
16 references to current
System.DirectoryServices.AccountManagement (16)
System\DirectoryServices\AccountManagement\AD\ADDNConstraintLinkedAttrSet.cs (7)
88if (null == this.current) 95if (this.current is SearchResult) 96dn = ((SearchResult)this.current).Properties["distinguishedName"][0].ToString(); 98dn = ((DirectoryEntry)this.current).Properties["distinguishedName"].Value.ToString(); 110if (this.current is SearchResult) 112resultPropCollection = new dSPropertyCollection(((SearchResult)this.current).Properties); 116resultPropCollection = new dSPropertyCollection(((DirectoryEntry)this.current).Properties);
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (9)
135if (this.current != null) 138if (this.current is DirectoryEntry) 139return ADUtils.DirectoryEntryAsPrincipal((DirectoryEntry)this.current, _storeCtx); 142return ADUtils.SearchResultAsPrincipal((SearchResult)this.current, _storeCtx, null); 219_storeCtx.InitializeNewDirectoryOptions((DirectoryEntry)this.current); 221GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADDNLinkedAttrSet", "MoveNextMemberSearcher: returning primary group {0}", ((DirectoryEntry)this.current).Path); 897Debug.Assert(this.current != null); 905((SearchResult)this.current).Path); 1069bookmark.current = this.current;