Package.OnLoadOptions(String, Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.