Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 쉐어포인트코리아
- 주신영
- 윈모데브
- 지승욱
- 윈도데브
- 윈도우폰
- 실버라이트 코리아
- 데브피아
- 신동혁
- 훈스닷넷
- windows mobile 6.5
- UX베이커리
- 마이크로소프트
- 윈도우 모바일
- 헤이맨
- 안드로이드
- 서진호
- winmodev
- 옴니아2
- 신석현
- 루나네스
- 거제도
- 소년포비
- 소년포비소프트
- 윈도우폰7
- 김춘배
- MIX10
- 스마트폰
- 윈도우모바일
- 황광진
Archives
- Today
- Total
소년포비의 세계정복!!
AD Handle C# Code Sample 본문
AD Handle C# Code Sample
원본 : http://theagussantoso.blogspot.com/2008/01/k2-tips-and-trick-january-2008.html
case : Suppose you want to get Codi's full name from active directory (login name : denallix\codi). You can use this code.
public string GetFullName(string userID)
{
DirectoryEntry entry = new DirectoryEntry("LDAP://DENALLIX.COM");
DirectorySearcher searcher = new DirectorySearcher(entry);
searcher.Filter = "(SAMAccountName=" + userID + ")";
searcher.PropertiesToLoad.Add("displayname");
SearchResult result = searcher.FindOne();
return result.Properties["displayname"][0].ToString();
}
Sample code : string myFullName = GetFullName("codi"); //returns Codi
Common problem #2: Get Active Directory's Email from Login Name
case : Suppose you want to get Codi's email from active directory (login name : denallix\codi).
public string GetEmail(string userID)
{
DirectoryEntry entry = new DirectoryEntry("LDAP://DENALLIX.COM");
DirectorySearcher searcher = new DirectorySearcher(entry);
searcher.Filter = "(SAMAccountName=" + userID + ")";
searcher.PropertiesToLoad.Add("mail");
SearchResult result = searcher.FindOne();
return result.Properties["mail"][0].ToString();
}
Sample code : string myFullName = GetEmail("codi"); //returns codi@denallix.com
'윈도우폰 세상 > Windows Phone' 카테고리의 다른 글
[Windows Mobile] Resource (0) | 2009.10.24 |
---|---|
[Windows Mobile] 추천강좌및사이트 (0) | 2009.10.24 |
옴니아폰 모아키 숫자 모드로 디스플레이하기(C#) (0) | 2009.10.21 |
전화번호 가져오기(C#) (0) | 2009.10.21 |
[C#]PDA개발시 필수사항들~!! (0) | 2009.10.11 |