aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/ShiftFS/ShiftFileStream.cs
blob: 9d81a280d261ca46b6e34bb3521ede789ebaa1e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.AccessControl;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32.SafeHandles;

namespace ShiftOS.Engine.ShiftFS
{
	/// <summary>
	/// To be implemented
	/// </summary>
	class ShiftFileStream : Stream
	{
		public ShiftFileStream() => throw new NotImplementedException();

		/// <inheritdoc />
		public override void Flush() => throw new NotImplementedException();

		/// <inheritdoc />
		public override long Seek(long offset, SeekOrigin origin) => throw new NotImplementedException();

		/// <inheritdoc />
		public override void SetLength(long value) => throw new NotImplementedException();

		/// <inheritdoc />
		public override int Read(byte[] buffer, int offset, int count) => throw new NotImplementedException();

		/// <inheritdoc />
		public override void Write(byte[] buffer, int offset, int count) => throw new NotImplementedException();

		/// <inheritdoc />
		public override bool CanRead { get; }

		/// <inheritdoc />
		public override bool CanSeek { get; }

		/// <inheritdoc />
		public override bool CanWrite { get; }

		/// <inheritdoc />
		public override long Length { get; }

		/// <inheritdoc />
		public override long Position { get; set; }
	}
}