Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IsolatedStorageFileStream.cs « System.IO.IsolatedStorage « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8ca0e96fe704f58eb9d3c10999e1a2a43c123c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// System.IO.IsolatedStorage.IsolatedStorageFileStream
//
// Sean MacIsaac (macisaac@ximian.com)
//
// (C) 2001 Ximian, Inc.

using System.IO;

namespace System.IO.IsolatedStorage
{
	[MonoTODO]
	public class IsolatedStorageFileStream : FileStream
	{
		public IsolatedStorageFileStream (string name, FileMode mode)
			: base(name, mode)
		{
		}	
	}
}