Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / _Assembly.cs
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.
27 //
28
29 using System.IO;
30 using System.Globalization;
31 using System.Reflection;
32 using System.Runtime.Serialization;
33 using System.Security.Policy;
34
35 namespace System.Runtime.InteropServices
36 {
37         [ComVisible (true)]
38         [CLSCompliant (false)]
39         [InterfaceType (ComInterfaceType.InterfaceIsDual)]
40         [Guid ("17156360-2F1A-384A-BC52-FDE93C215C5B")]
41 #if !FULL_AOT_RUNTIME
42         [TypeLibImportClass (typeof(Assembly))]
43 #endif
44         public interface _Assembly
45         {
46                 string ToString ();
47
48                 bool Equals (object other);
49
50                 int GetHashCode ();
51
52                 Type GetType ();
53
54                 string CodeBase { get; }
55
56                 string EscapedCodeBase { get; }
57
58                 AssemblyName GetName ();
59
60                 AssemblyName GetName (bool copiedName);
61
62                 string FullName { get; }
63
64                 MethodInfo EntryPoint { get; }
65
66                 Type GetType (string name);
67
68                 Type GetType (string name, bool throwOnError);
69
70                 Type[] GetExportedTypes ();
71
72                 Type[] GetTypes();
73
74                 Stream GetManifestResourceStream (Type type, string name);
75
76                 Stream GetManifestResourceStream (string name);
77
78                 FileStream GetFile (string name);
79
80                 FileStream[] GetFiles ();
81
82                 FileStream[] GetFiles (bool getResourceModules);
83
84                 string[] GetManifestResourceNames ();
85
86                 ManifestResourceInfo GetManifestResourceInfo (string resourceName);
87
88                 string Location { get; }
89
90 #if !NET_2_1
91                 Evidence Evidence { get; }
92 #endif
93
94                 object[] GetCustomAttributes (Type attributeType, bool inherit);
95
96                 object[] GetCustomAttributes (bool inherit);
97
98                 bool IsDefined (Type attributeType, bool inherit);
99
100                 //[SecurityPermission (SecurityAction.LinkDemand, SerializationFormatter = true)]
101                 void GetObjectData (SerializationInfo info, StreamingContext context);
102
103                 Type GetType (string name, bool throwOnError, bool ignoreCase);
104
105                 Assembly GetSatelliteAssembly (CultureInfo culture);
106
107                 Assembly GetSatelliteAssembly (CultureInfo culture, Version version);
108
109                 Module LoadModule (string moduleName, byte[] rawModule);
110
111                 Module LoadModule (string moduleName, byte[] rawModule, byte[] rawSymbolStore);
112
113                 object CreateInstance (string typeName);
114
115                 object CreateInstance (string typeName, bool ignoreCase);
116
117                 object CreateInstance (string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args,
118                                        CultureInfo culture, object[] activationAttributes);
119
120                 Module[] GetLoadedModules ();
121
122                 Module[] GetLoadedModules (bool getResourceModules);
123
124                 Module[] GetModules ();
125
126                 Module[] GetModules (bool getResourceModules);
127
128                 Module GetModule (string name);
129
130                 AssemblyName[] GetReferencedAssemblies ();
131
132 #if !NET_2_1
133                 bool GlobalAssemblyCache { get; }
134 #endif
135
136                 event ModuleResolveEventHandler ModuleResolve;
137         }
138 }
139