XamlRenderingBackgroundTask.OnRun(IBackgroundTaskInstance) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
執行背景工作的工作。 系統會在觸發相關聯的背景工作時呼叫這個方法。
protected:
virtual void OnRun(IBackgroundTaskInstance ^ taskInstance) = OnRun;
void OnRun(IBackgroundTaskInstance const& taskInstance);
protected virtual void OnRun(IBackgroundTaskInstance taskInstance);
function onRun(taskInstance)
Protected Overridable Sub OnRun (taskInstance As IBackgroundTaskInstance)
參數
- taskInstance
- IBackgroundTaskInstance
背景工作實例的介面。 系統會在工作觸發執行時建立這個實例。
備註
重要
若要盡可能降低背景工作的記憶體使用量,此工作應該在 C++ Windows 執行階段 元件中實作,以進行Windows Phone。 如果以 C# 寫入記憶體使用量,記憶體使用量將會較高,而且會導致記憶體不足的裝置上的記憶體例外狀況,這會終止背景工作。 如需記憶體限制的詳細資訊,請參閱 使用背景工作支援您的應用程式。