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

ManifestResourceInfo.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76a359fa5a1452f5443945f164ce80262552a9b8 (plain)
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
// System.Reflection.ManifestResourceInfo
//
// Sean MacIsaac (macisaac@ximian.com)
// Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc. 2001

namespace System.Reflection
{
	public class ManifestResourceInfo
	{
		private Assembly _assembly;
		private string _filename;
		private ResourceLocation _location;

		internal ManifestResourceInfo (Assembly assembly, string filename, ResourceLocation location)
		{
			_assembly = assembly;
			_filename = filename;
			_location = location;
		}
		[MonoTODO]
		public virtual string FileName {
			get { return _filename; }
		}

		[MonoTODO]
		public virtual Assembly ReferencedAssembly {
			get { return _assembly; }
		}

		[MonoTODO]
		public virtual ResourceLocation ResourceLocation {
			get { return _location; }
		}
	}
}