ReadOuterXml method

String ReadOuterXml()
Reads the Outer XML at the given location.

Implementation

String ReadOuterXml() {
  if (!this.IsStartElement()) {
    throw new ServiceXmlDeserializationException(
        "Strings.CurrentPositionNotElementStart");
  }

  return this._xmlReader.ReadOuterXml();
}