summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs')
-rw-r--r--src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs b/src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs
new file mode 100644
index 0000000000..a53d32abdb
--- /dev/null
+++ b/src/mscorlib/src/System/Reflection/ManifestResourceInfo.cs
@@ -0,0 +1,67 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*=============================================================================
+**
+**
+**
+**
+**
+** Purpose: For info regarding a manifest resource's topology.
+**
+**
+=============================================================================*/
+
+namespace System.Reflection {
+ using System;
+
+[System.Runtime.InteropServices.ComVisible(true)]
+ public class ManifestResourceInfo {
+ private Assembly _containingAssembly;
+ private String _containingFileName;
+ private ResourceLocation _resourceLocation;
+
+ public ManifestResourceInfo(Assembly containingAssembly,
+ String containingFileName,
+ ResourceLocation resourceLocation)
+ {
+ _containingAssembly = containingAssembly;
+ _containingFileName = containingFileName;
+ _resourceLocation = resourceLocation;
+ }
+
+ public virtual Assembly ReferencedAssembly
+ {
+ get {
+ return _containingAssembly;
+ }
+ }
+
+ public virtual String FileName
+ {
+ get {
+ return _containingFileName;
+ }
+ }
+
+ public virtual ResourceLocation ResourceLocation
+ {
+ get {
+ return _resourceLocation;
+ }
+ }
+ }
+
+ // The ResourceLocation is a combination of these flags, set or not.
+ // Linked means not Embedded.
+[Serializable]
+ [Flags]
+[System.Runtime.InteropServices.ComVisible(true)]
+ public enum ResourceLocation
+ {
+ Embedded = 0x1,
+ ContainedInAnotherAssembly = 0x2,
+ ContainedInManifestFile = 0x4
+ }
+}