IProfileManager.LoadSettingsFromStorage Method
Reads a VSPackage's configuration from local storage (typically the registry) and updates its state.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'宣言
Sub LoadSettingsFromStorage
'使用
Dim instance As IProfileManager
instance.LoadSettingsFromStorage()
void LoadSettingsFromStorage()
void LoadSettingsFromStorage()
function LoadSettingsFromStorage()
Remarks
An implementation of LoadSettingsFromStorage needs to obtain access to the VSPackage it supports so that it can validate the retrieved data and update the state of the VSPackage..
This method is called by the Visual Studio environment when a VSPackage is initialized, or when a user chooses the Import/Export Settings command on the Tools menu to save the Visual Studio state.
For Visual Studio settings export operations, this method is called prior to SaveSettingsToXml to load VSPackage from local storage (typically the registry) to ensure that the correct VSPackage state is called.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Concepts
How to: Export Settings Using the Managed Package Framework
How to: Import Settings Using the Managed Package Framework