DialogPage.LoadSettingsFromXml Method

Called by Visual Studio to load the settings of a dialog page from the Visual Studio settings storage on disk.

Namespace:  Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

'Declaration
Public Overridable Sub LoadSettingsFromXml ( _
    reader As IVsSettingsReader _
)
public virtual void LoadSettingsFromXml(
    IVsSettingsReader reader
)
public:
virtual void LoadSettingsFromXml(
    IVsSettingsReader^ reader
)
abstract LoadSettingsFromXml : 
        reader:IVsSettingsReader -> unit 
override LoadSettingsFromXml : 
        reader:IVsSettingsReader -> unit 
public function LoadSettingsFromXml(
    reader : IVsSettingsReader
)

Parameters

Implements

IProfileManager.LoadSettingsFromXml(IVsSettingsReader)

Remarks

LoadSettingsFromXml implements LoadSettingsFromXml.

This method is called to load the settings of a dialog page from the Visual Studio settings storage on disk.

The default implementation retrieves setting information for all the properties of the dialog page's automation object that support conversion to a string through TypeConverter.

Note

Typically an instance of a dialog page class is its own automation object. Therefore, properties that are retrieved are those of the class that is derived from DialogPage. However, if AutomationObject returns another object, it is that object's properties, and not the properties of the class, that are retrieved.

.NET Framework Security

See Also

Reference

DialogPage Class

Microsoft.VisualStudio.Shell Namespace

LoadSettingsFromXml

DialogPage

Other Resources

Options Pages

Toolbox (Visual Studio SDK)

State Persistence and the Visual Studio IDE