Table of Contents

Method Load

Namespace
SharpVectors.Dom.Svg
Assembly
SharpVectors.Model.dll

Load(string)

Loads the XML document from the specified URL.

public override void Load(string filename)

Parameters

filename string

URL for the file containing the XML document to load.

Load(string, Stream)

Loads the XML document from the specified stream but with the specified base URL

public void Load(string baseUrl, Stream stream)

Parameters

baseUrl string

Base URL for the stream from which the XML document is loaded.

stream Stream

The stream containing the XML document to load.

Load(TextReader)

Loads the XML document from the specified TextReader.

public override void Load(TextReader txtReader)

Parameters

txtReader TextReader

Load(Stream)

Loads the XML document from the specified stream.

public override void Load(Stream inStream)

Parameters

inStream Stream

The stream containing the XML document to load.