[]
Opens a saved XML file.
public bool Open(string fileName)
Public Function Open(fileName As String) As Boolean
| Type | Name | Description |
|---|---|---|
| string | fileName | Path and name of file from which to load the data |
| Type | Description |
|---|---|
| bool | true if successful; false otherwise |
Opens saved XML from a stream.
public bool Open(Stream stream)
Public Function Open(stream As Stream) As Boolean
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream from which to load the data |
| Type | Description |
|---|---|
| bool | true if successful; false otherwise |
| Type | Condition |
|---|---|
| ArgumentNullException | No stream specified or specified stream is null |