방법: 간단한 System.DirectoryServices 응용 프로그램 만들기
다음 코드 예제는 모든 기능을 갖춘 System.DirectoryServices 콘솔 응용 프로그램을 만듭니다. 이 응용 프로그램에서는 사용자 이름, 성, 전화 번호 또는 사무실 위치를 포함할 수 있는 모호한 이름을 기반으로 Active Directory 도메인 서비스를 검색하고 그 결과를 표시합니다.
System.DirectoryServices 콘솔 응용 프로그램 만들기
Visual Studio를 연 다음 새 프로젝트를 클릭합니다.
새 프로젝트 대화 상자의 왼쪽 창에서 Visual Basic, Visual C# 또는 Visual J#을 선택합니다. 그런 다음 선택한 언어에서 Windows를 클릭합니다. 템플릿 창에서 콘솔 응용 프로그램을 클릭합니다.
프로젝트 이름을 지정한 다음 확인을 클릭합니다.
**프로젝트>참조 추가...**를 클릭하고 .NET 탭에 표시된 목록에서 System.DirectoryServices를 클릭합니다.
C# 버전의 응용 프로그램을 구성하는 경우에는 "Using System.DirectoryServices;" 문을 using 문 목록에 추가합니다. Visual Basic 버전의 응용 프로그램을 구성하는 경우에는 "Imports System.DirectoryServices" 문을 Imports 문 목록에 추가합니다.
다음 줄을 Class1 Main 모듈에 추가합니다.
Imports System.DirectoryServices .... Dim src As DirectorySearcher = New DirectorySearcher("(anr=putANameHere)") Dim result As SearchResult For Each result In src.FindAll() Console.WriteLine("{0} {1}", result.Properties("Name")(0), result.Properties("telephoneNumber")(0)) Next
using System.DirectoryServices; ... DirectorySearcher src = new DirectorySearcher("(anr=putANameHere)"); foreach(SearchResult res in src.FindAll() ) { Console.WriteLine("{0} {1}", res.Properties["cn"][0], res.Properties["telephoneNumber"][0]); }
응용 프로그램을 컴파일하고 실행합니다.
Windows Form을 사용하는 System.DirectoryServices 응용 프로그램의 코드 예제 및 자세한 내용은 사용자 멤버 자격 열거를 참조하십시오.
참고 항목
작업
방법: System.DirectoryServices에 대한 개발 환경 설정
참조
개념
Send comments about this topic to Microsoft.
Copyright © 2007 by Microsoft Corporation. All rights reserved.