IRawElementProviderSimple.ProviderOptions 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定使用者介面自動化提供者特性的值,例如,它是用戶端或伺服器端提供者。
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。
範例
下列範例程式碼示範伺服器端消費者介面自動化提供者的 ProviderOptions 實作。
ProviderOptions IRawElementProviderSimple.ProviderOptions
{
get
{
return ProviderOptions.ServerSideProvider;
}
}
ReadOnly Property ProviderOptions() As ProviderOptions _
Implements IRawElementProviderSimple.ProviderOptions
Get
Return ProviderOptions.ServerSideProvider
End Get
End Property
備註
消費者介面自動化會以不同的方式處理不同類型的提供者。 例如,來自伺服器端提供者的事件會廣播到所有接聽消費者介面自動化用戶端進程,但來自用戶端提供者的事件會保留在該用戶端進程中。