SearchSuggestionManager.SearchHistoryEnabled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出是否會自動追蹤使用者先前使用應用程式的搜尋,並用來提供建議。
public:
property bool SearchHistoryEnabled { bool get(); void set(bool value); };
bool SearchHistoryEnabled();
void SearchHistoryEnabled(bool value);
public bool SearchHistoryEnabled { get; set; }
var boolean = searchSuggestionManager.searchHistoryEnabled;
searchSuggestionManager.searchHistoryEnabled = boolean;
Public Property SearchHistoryEnabled As Boolean
屬性值
Boolean
bool
True 是表示 如果使用者的搜尋歷程記錄會自動追蹤並用來提供建議;否則 為 false。 預設值為 true。
備註
將 SearchHistoryEnabled 屬性設定為 false ,以退出宣告自動建議,因此您的應用程式可以選擇性地提供自己的建議。 如果您決定讓 app 追蹤自己的搜尋歷程記錄,您也應該讓使用者透過 [設定] 常用鍵來控制其歷程記錄,例如清除歷程記錄的能力。
變更 SearchHistoryEnabled 屬性的值並不會立即更新 Suggestions 屬性中的建議。 呼叫 SetQuery 以更新 Suggestions 屬性。