mscorlib(4.0.0.0) API with additions
ManifestResourceInfo.cs
2 
3 namespace System.Reflection
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public class ManifestResourceInfo
9  {
10  private Assembly _containingAssembly;
11 
12  private string _containingFileName;
13 
14  private ResourceLocation _resourceLocation;
15 
18  [__DynamicallyInvokable]
19  public virtual Assembly ReferencedAssembly
20  {
21  [__DynamicallyInvokable]
22  get
23  {
24  return _containingAssembly;
25  }
26  }
27 
30  [__DynamicallyInvokable]
31  public virtual string FileName
32  {
33  [__DynamicallyInvokable]
34  get
35  {
36  return _containingFileName;
37  }
38  }
39 
42  [__DynamicallyInvokable]
43  public virtual ResourceLocation ResourceLocation
44  {
45  [__DynamicallyInvokable]
46  get
47  {
48  return _resourceLocation;
49  }
50  }
51 
56  [__DynamicallyInvokable]
57  public ManifestResourceInfo(Assembly containingAssembly, string containingFileName, ResourceLocation resourceLocation)
58  {
59  _containingAssembly = containingAssembly;
60  _containingFileName = containingFileName;
61  _resourceLocation = resourceLocation;
62  }
63  }
64 }
Definition: __Canon.cs:3
ResourceLocation
Specifies the resource location.
virtual Assembly ReferencedAssembly
Gets the containing assembly for the manifest resource.
virtual string FileName
Gets the name of the file that contains the manifest resource, if it is not the same as the manifest ...
Represents an assembly, which is a reusable, versionable, and self-describing building block of a com...
Definition: Assembly.cs:22
Provides access to manifest resources, which are XML files that describe application dependencies.
ManifestResourceInfo(Assembly containingAssembly, string containingFileName, ResourceLocation resourceLocation)
Initializes a new instance of the T:System.Reflection.ManifestResourceInfo class for a resource that ...