ApplicationSettingsBase.SettingsLoaded イベント
定義
アプリケーション設定をストレージから取得した後に発生します。Occurs after the application settings are retrieved from storage.
public:
event System::Configuration::SettingsLoadedEventHandler ^ SettingsLoaded;
public event System.Configuration.SettingsLoadedEventHandler SettingsLoaded;
member this.SettingsLoaded : System.Configuration.SettingsLoadedEventHandler
Public Custom Event SettingsLoaded As SettingsLoadedEventHandler
注釈
イベントが発生するのは、 get
最初にItem[String]使用された構成プロパティの初期アクセスが行われた後に限られます。通常は、メソッドを使用します。 SettingsLoadedThe SettingsLoaded event occurs only after the initial get
access of the first configuration property used, typically through the Item[String] method. その後のアクセスでは、ローカルにキャッシュされている settings プロパティの値を使用します。Subsequent accesses use values for the settings property that are cached locally. メソッドReset とReloadメソッドは、キャッシュされたすべての値をクリアし、後続のプロパティアクセス時にこのイベントが再び発生するようにします。The Reset and Reload methods will clear all cached values so this event will be raised again upon subsequent property access.