2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.Runtime.InteropServices / _Assembly.cs
blob3e9780a98854263db0cb52fe8b0e01578d0571ba
1 //
2 // System.Runtime.InteropServices._Assembly interface
3 //
4 // Author:
5 // Andreas Nahr <ClassDevelopment@A-SoftTech.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #if NET_1_1
31 using System.IO;
32 using System.Globalization;
33 using System.Reflection;
34 using System.Runtime.Serialization;
35 using System.Security.Policy;
37 namespace System.Runtime.InteropServices
39 [ComVisible (true)]
40 [CLSCompliant (false)]
41 [InterfaceType (ComInterfaceType.InterfaceIsDual)]
42 [Guid ("17156360-2F1A-384A-BC52-FDE93C215C5B")]
43 [TypeLibImportClass (typeof(Assembly))]
44 public interface _Assembly
46 string ToString ();
48 bool Equals (object other);
50 int GetHashCode ();
52 Type GetType ();
54 string CodeBase { get; }
56 string EscapedCodeBase { get; }
58 AssemblyName GetName ();
60 AssemblyName GetName (bool copiedName);
62 string FullName { get; }
64 MethodInfo EntryPoint { get; }
66 Type GetType (string name);
68 Type GetType (string name, bool throwOnError);
70 Type[] GetExportedTypes ();
72 Type[] GetTypes();
74 Stream GetManifestResourceStream (Type type, string name);
76 Stream GetManifestResourceStream (string name);
78 FileStream GetFile (string name);
80 FileStream[] GetFiles ();
82 FileStream[] GetFiles (bool getResourceModules);
84 string[] GetManifestResourceNames ();
86 ManifestResourceInfo GetManifestResourceInfo (string resourceName);
88 string Location { get; }
90 #if !NET_2_1
91 Evidence Evidence { get; }
92 #endif
94 object[] GetCustomAttributes (Type attributeType, bool inherit);
96 object[] GetCustomAttributes (bool inherit);
98 bool IsDefined (Type attributeType, bool inherit);
100 //[SecurityPermission (SecurityAction.LinkDemand, SerializationFormatter = true)]
101 void GetObjectData (SerializationInfo info, StreamingContext context);
103 Type GetType (string name, bool throwOnError, bool ignoreCase);
105 Assembly GetSatelliteAssembly (CultureInfo culture);
107 Assembly GetSatelliteAssembly (CultureInfo culture, Version version);
109 Module LoadModule (string moduleName, byte[] rawModule);
111 Module LoadModule (string moduleName, byte[] rawModule, byte[] rawSymbolStore);
113 object CreateInstance (string typeName);
115 object CreateInstance (string typeName, bool ignoreCase);
117 object CreateInstance (string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args,
118 CultureInfo culture, object[] activationAttributes);
120 Module[] GetLoadedModules ();
122 Module[] GetLoadedModules (bool getResourceModules);
124 Module[] GetModules ();
126 Module[] GetModules (bool getResourceModules);
128 Module GetModule (string name);
130 AssemblyName[] GetReferencedAssemblies ();
132 #if !NET_2_1
133 bool GlobalAssemblyCache { get; }
134 #endif
136 event ModuleResolveEventHandler ModuleResolve;
140 #endif