IRawElementProviderSimple.ProviderOptions 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
UI 자동화 공급자의 특성을 지정하는 값을 가져옵니다. 예를 들어 클라이언트 쪽 공급자인지 아니면 서버 쪽 공급자인지를 지정합니다.
public:
property System::Windows::Automation::Provider::ProviderOptions ProviderOptions { System::Windows::Automation::Provider::ProviderOptions get(); };
public System.Windows.Automation.Provider.ProviderOptions ProviderOptions { get; }
member this.ProviderOptions : System.Windows.Automation.Provider.ProviderOptions
Public ReadOnly Property ProviderOptions As ProviderOptions
속성 값
ClientSideProvider 또는 ServerSideProvider입니다.
예제
다음 예제 코드는 서버 쪽 UI 자동화 공급자에 ProviderOptions 대한 구현을 보여 있습니다.
ProviderOptions IRawElementProviderSimple.ProviderOptions
{
get
{
return ProviderOptions.ServerSideProvider;
}
}
ReadOnly Property ProviderOptions() As ProviderOptions _
Implements IRawElementProviderSimple.ProviderOptions
Get
Return ProviderOptions.ServerSideProvider
End Get
End Property
설명
UI 자동화 다양한 유형의 공급자를 다르게 처리합니다. 예를 들어 서버 쪽 공급자의 이벤트는 모든 수신 대기 UI 자동화 클라이언트 프로세스로 브로드캐스트되지만 클라이언트 쪽 공급자의 이벤트는 해당 클라이언트 프로세스에 남아 있습니다.