2004-03-01 Larry Ewing <lewing@ximian.com>
[mono-project.git] / mcs / class / corlib / System.Reflection / ManifestResourceInfo.cs
blob7f5e94c2a184ced8dab253c81edf246aabb7f47d
1 // System.Reflection.ManifestResourceInfo
2 //
3 // Sean MacIsaac (macisaac@ximian.com)
4 // Duncan Mak (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc. 2001
8 namespace System.Reflection
10 public class ManifestResourceInfo
12 private Assembly _assembly;
13 private string _filename;
14 private ResourceLocation _location;
16 internal ManifestResourceInfo ()
20 internal ManifestResourceInfo (Assembly assembly, string filename, ResourceLocation location)
22 _assembly = assembly;
23 _filename = filename;
24 _location = location;
26 [MonoTODO]
27 public virtual string FileName {
28 get { return _filename; }
31 [MonoTODO]
32 public virtual Assembly ReferencedAssembly {
33 get { return _assembly; }
36 [MonoTODO]
37 public virtual ResourceLocation ResourceLocation {
38 get { return _location; }