Merge pull request #439 from mono-soc-2012/garyb/iconfix
[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         [TypeLibImportClass (typeof(Assembly))]
42         public interface _Assembly
43         {
44                 string ToString ();
45
46                 bool Equals (object other);
47
48                 int GetHashCode ();
49
50                 Type GetType ();
51
52                 string CodeBase { get; }
53
54                 string EscapedCodeBase { get; }
55
56                 AssemblyName GetName ();
57
58                 AssemblyName GetName (bool copiedName);
59
60                 string FullName { get; }
61
62                 MethodInfo EntryPoint { get; }
63
64                 Type GetType (string name);
65
66                 Type GetType (string name, bool throwOnError);
67
68                 Type[] GetExportedTypes ();
69
70                 Type[] GetTypes();
71
72                 Stream GetManifestResourceStream (Type type, string name);
73
74                 Stream GetManifestResourceStream (string name);
75
76                 FileStream GetFile (string name);
77
78                 FileStream[] GetFiles ();
79
80                 FileStream[] GetFiles (bool getResourceModules);
81
82                 string[] GetManifestResourceNames ();
83
84                 ManifestResourceInfo GetManifestResourceInfo (string resourceName);
85
86                 string Location { get; }
87
88 #if !NET_2_1
89                 Evidence Evidence { get; }
90 #endif
91
92                 object[] GetCustomAttributes (Type attributeType, bool inherit);
93
94                 object[] GetCustomAttributes (bool inherit);
95
96                 bool IsDefined (Type attributeType, bool inherit);
97
98                 //[SecurityPermission (SecurityAction.LinkDemand, SerializationFormatter = true)]
99                 void GetObjectData (SerializationInfo info, StreamingContext context);
100
101                 Type GetType (string name, bool throwOnError, bool ignoreCase);
102
103                 Assembly GetSatelliteAssembly (CultureInfo culture);
104
105                 Assembly GetSatelliteAssembly (CultureInfo culture, Version version);
106
107                 Module LoadModule (string moduleName, byte[] rawModule);
108
109                 Module LoadModule (string moduleName, byte[] rawModule, byte[] rawSymbolStore);
110
111                 object CreateInstance (string typeName);
112
113                 object CreateInstance (string typeName, bool ignoreCase);
114
115                 object CreateInstance (string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args,
116                                        CultureInfo culture, object[] activationAttributes);
117
118                 Module[] GetLoadedModules ();
119
120                 Module[] GetLoadedModules (bool getResourceModules);
121
122                 Module[] GetModules ();
123
124                 Module[] GetModules (bool getResourceModules);
125
126                 Module GetModule (string name);
127
128                 AssemblyName[] GetReferencedAssemblies ();
129
130 #if !NET_2_1
131                 bool GlobalAssemblyCache { get; }
132 #endif
133
134                 event ModuleResolveEventHandler ModuleResolve;
135         }
136 }
137