Package.OnLoadOptions(String, Stream) Method

Definition

Invoked by the package class when there are options to be read out of the solution file.

protected:
 virtual void OnLoadOptions(System::String ^ key, System::IO::Stream ^ stream);
protected virtual void OnLoadOptions (string key, System.IO.Stream stream);
abstract member OnLoadOptions : string * System.IO.Stream -> unit
override this.OnLoadOptions : string * System.IO.Stream -> unit
Protected Overridable Sub OnLoadOptions (key As String, stream As Stream)

Parameters

key
String

The name of the option key to load.

stream
Stream

The stream to load the option data from.

Remarks

This method can be overridden by the deriving class to load solution options.

Applies to