LoadObjectFromStream() public method

public LoadObjectFromStream ( object customizationObject, Stream stream ) : void
customizationObject object
stream Stream
return void
Exemplo n.º 1
0
 protected void SetupFromXmlStream(Stream stream)
 {
     SuspendLayout();
     xmlLoader = new XmlLoader();
     SetupXmlLoader();
     if (stream != null) {
         xmlLoader.LoadObjectFromStream(this, stream);
     }
     ResumeLayout(false);
 }
Exemplo n.º 2
0
 protected void SetupFromXmlStream(Stream stream)
 {
     SuspendLayout();
     xmlLoader = new XmlLoader();
     SetupXmlLoader();
     if (stream != null)
     {
         xmlLoader.LoadObjectFromStream(this, stream);
     }
     ResumeLayout(false);
 }