InfoPathEditorWithAppDomain.LoadFromStream(Object, Object, String) 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.
Loads XML from a file stream (System.IO.IStream) into the InfoPathEditorWithAppDomain object.
public:
void LoadFromStream(System::Object ^ punkStream, System::Object ^ punkAppDomain, System::String ^ bstrInputParameters);
public void LoadFromStream (object punkStream, object punkAppDomain, string bstrInputParameters);
abstract member LoadFromStream : obj * obj * string -> unit
Public Sub LoadFromStream (punkStream As Object, punkAppDomain As Object, bstrInputParameters As String)
Parameters
- punkStream
- Object
The file stream (System.IO.IStream) containing the form file (.xml).
- bstrInputParameters
- String
One or more name/value pairs separated by the ampersand (&) character.
Remarks
To use the input parameters passed to the bstrInputParameters
parameter, the form specified in the bstrURL
parameter must contain a OnLoad event handler that uses the InputParameters property of the LoadingEventArgs class to retrieve the input parameter values, and then do something with those values.