IDsDisplaySpecifier 인터페이스(dsclient.h)
IDsDisplaySpecifier 인터페이스는 displaySpecifier 클래스의 Active Directory 도메인 Service 개체에 대한 액세스를 제공합니다. 이러한 개체를 표시 지정자라고 합니다. 표시 지정자는 Active Directory Domain Services 개체의 속성 페이지 또는 상황에 맞는 메뉴와 같은 사용자 인터페이스 요소를 표시하는 방법에 대한 데이터를 저장합니다. 자세한 내용은 표시 지정자를 참조하세요.
이 인터페이스는 Active Directory Domain Services 기존 개체의 표시 기능을 확장하거나, 새 디렉터리 개체에 대한 디스플레이를 관리하거나, Active Directory Domain Services 지원 애플리케이션의 디스플레이를 향상시키는 데 사용됩니다. 자세한 내용은 디렉터리 개체에 대한 사용자 인터페이스 확장을 참조하세요.
이 인터페이스의 instance 만들려면 다음 코드 예제와 같이 CLSID_DsDisplaySpecifier 개체 식별자를 사용하여 CoCreateInstance를 호출합니다.
#include <objbase.h>
#define INITGUID
#include <initguid.h>
#include "dsclient.h"
HRESULT hr;
IDsDisplaySpecifier *pDS;
CoInitialize(NULL);
hr = CoCreateInstance( CLSID_DsDisplaySpecifier,
NULL,
CLSCTX_INPROC_SERVER,
IID_IDsDisplaySpecifier,
(void**)&pDS);
if(SUCCEEDED(hr))
{
// More code calling the interface methods.
pDS->Release();
}
CoUninitialize();
상속
IDsDisplaySpecifier 인터페이스는 IUnknown 인터페이스에서 상속됩니다. IDsDisplaySpecifier 에는 다음과 같은 유형의 멤버도 있습니다.
메서드
IDsDisplaySpecifier 인터페이스에는 이러한 메서드가 있습니다.
IDsDisplaySpecifier::EnumClassAttributes 지정된 개체 클래스의 특성을 열거합니다. |
IDsDisplaySpecifier::GetAttributeADsType 지정된 특성의 특성 유형을 검색합니다. |
IDsDisplaySpecifier::GetClassCreationInfo 지정된 개체 클래스에 대한 클래스 만들기 마법사 개체에 대한 데이터를 검색합니다. |
IDsDisplaySpecifier::GetDisplaySpecifier IDsDisplaySpecifier::GetDisplaySpecifier 메서드는 Active Directory Domain Services 지정된 클래스의 표시 지정자 개체에 바인딩됩니다. |
IDsDisplaySpecifier::GetFriendlyAttributeName IDsDisplaySpecifier::GetFriendlyAttributeName 메서드는 지정된 개체 클래스의 특성의 지역화된 이름에서 검색합니다. |
IDsDisplaySpecifier::GetFriendlyClassName IDsDisplaySpecifier::GetFriendlyClassName 메서드는 개체 클래스의 지역화된 이름을 검색합니다. |
IDsDisplaySpecifier::GetIcon IDsDisplaySpecifier::GetIcon 메서드는 지정된 개체 클래스에 대한 아이콘을 가져옵니다. |
IDsDisplaySpecifier::GetIconLocation 지정된 개체 클래스의 아이콘 위치를 가져옵니다. |
IDsDisplaySpecifier::IsClassContainer 지정된 개체 클래스가 컨테이너인지 여부를 확인합니다. |
IDsDisplaySpecifier::SetLanguageID IDsDisplaySpecifier 개체에서 사용하는 로캘을 지정된 언어로 변경합니다. |
IDsDisplaySpecifier::SetServer 표시 지정자 데이터를 가져올 서버를 지정합니다. |
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows Vista |
지원되는 최소 서버 | Windows Server 2008 |
대상 플랫폼 | Windows |
헤더 | dsclient.h |