XmlDocument « XmlDocument Operator
This operator copies the XmlDocument on the right side to the XmlDocument object on the left side .
Example of use
var impl = new XmlDOMImplementation;
var res = GetHttpSession (). Get ("sample.xml");
var xml1 = impl.Load (res);
var xml2 = new XmlDocument ();
xml2 << xml1;