A data stream wrapper for a file on the host system, such as a disk image.
Inheritance: IDataStream
Exemplo n.º 1
0
		public void Close() {
			if (fileStream != null) {
				fileStream.Close();
				fileStream = null;
			}
		}
Exemplo n.º 2
0
		public void Open() {
			if (fileStream == null) {
				fileStream = new FileDataStream(Path, null);
				fileStream.Open();
			}
		}