SAMAccountName を知っているので、ディレクトリ全体でこのユーザーのグループ メンバーシップを反映するエントリをグループのリストに入力したいと考えています。これが私のスタートですが、私は困惑しています:
Dim path As String = WebConfigurationManager.AppSettings("ldapPath")
Dim entry As New DirectoryEntry(path)
Dim search As DirectorySearcher = New DirectorySearcher(entry)
Dim groupList As StringBuilder = New StringBuilder()
search.Filter = "(SAMAccountName=" & _thisUser.UserName & ")"
search.PropertiesToLoad.Add("memberOf")
'search.SearchScope = SearchScope.Subtree
For Each res As SearchResult In search.FindAll
Next ''Just doing this so I can look at "res" objects in debug
これを横断する方法がわかりません。どうぞ、何か指針はありますか?