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.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Sub LoadSettingsFromStorage
void LoadSettingsFromStorage()
void LoadSettingsFromStorage()
abstract LoadSettingsFromStorage : unit -> unit
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.
.NET Framework Security
- 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
Reference
Microsoft.VisualStudio.Shell Namespace
Other Resources
How to: Export Settings By Using the Managed Package Framework
How to: Import Settings By Using the Managed Package Framework