가 나는 C# .NET을을DirectoryServices.DirectoryEntry 차이.
I을 사용하여 Active Directory의 그룹에서 사용자 항목을 제거하기 위해 노력하고있어 DirectoryServices.DirectoryEntry class를 사용하여 제거
DirectoryEntry directoryEntry = new DirectoryEntry(myGroupPath);
directoryEntry.Properties["member"].Remove(userDistinguishedName);
directoryEntry.CommitChanges();
두 번째 방법
DirectoryEntry directoryEntry = new DirectoryEntry(myGroupPath);
directoryEntry.Invoke("Remove", userDistinguishedName);
: 그 일을 두 가지 방법,
첫 번째 방법을 가로 질러왔다
msdn Invoke documentation에 따르면 Invoke는 기본 Active Directory 도메인 서비스 개체에 대한 메서드를 호출합니다. 첫 번째 방법과 다른 점은 무엇입니까?