Package.OnSaveOptions Method

Invoked by the Package class when there are options to be saved to the solution file.

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

‘선언
Protected Overridable Sub OnSaveOptions ( _
    key As String, _
    stream As Stream _
)
‘사용 방법
Dim key As String
Dim stream As Stream

Me.OnSaveOptions(key, stream)
protected virtual void OnSaveOptions(
    string key,
    Stream stream
)
protected:
virtual void OnSaveOptions(
    String^ key, 
    Stream^ stream
)
abstract OnSaveOptions : 
        key:string * 
        stream:Stream -> unit 
override OnSaveOptions : 
        key:string * 
        stream:Stream -> unit 
protected function OnSaveOptions(
    key : String, 
    stream : Stream
)

Parameters

Remarks

This method can be overridden by the deriving class to save solution options. See the section on the AddOptionKey method for details.

.NET Framework Security

See Also

Reference

Package Class

Package Members

Microsoft.VisualStudio.Shell Namespace