次の方法で共有


ModulePropertiesPage.OnException(Exception) メソッド

定義

例外メッセージを表示します。

protected:
 virtual void OnException(Exception ^ ex);
protected virtual void OnException (Exception ex);
abstract member OnException : Exception -> unit
override this.OnException : Exception -> unit
Protected Overridable Sub OnException (ex As Exception)

パラメーター

ex
Exception

キャッチされた例外。

次の例では、例外が LoadPreferences キャッチされたときに メソッドを呼び出します。

protected override void LoadPreferences(
    PreferencesStore store) {

    try {
        base.LoadPreferences(store);

        _myCnfgBool = store.GetValue(CS.myCnfgBool, false);
        int i = store.GetValue(CS.zCnt, 1638);
        Trace.WriteLine("store.GetValue(zCnt, 1638); = "
            + i.ToString());

    } catch (Exception ex) {
        OnException(ex);
    }
}

適用対象