System.Drawing: added email to icon and test file headers
[mono.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices / RegistrationHelper.cs
1 // 
2 // System.EnterpriseServices.RegistrationHelper.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Runtime.InteropServices;
33
34 namespace System.EnterpriseServices {
35         [Guid("89a86e7b-c229-4008-9baa-2f5c8411d7e0")]
36         public sealed class RegistrationHelper : MarshalByRefObject, IRegistrationHelper {
37
38                 #region Constructors
39
40                 public RegistrationHelper ()
41                 {
42                 }
43
44                 #endregion
45
46                 #region Methods
47
48                 public void InstallAssembly (string assembly, ref string application, ref string tlb, InstallationFlags installFlags)
49                 {
50                         application = String.Empty;
51                         tlb = String.Empty;
52
53                         InstallAssembly (assembly, ref application, null, ref tlb, installFlags);
54                 }
55
56                 [MonoTODO]
57                 public void InstallAssembly (string assembly, ref string application, string partition, ref string tlb, InstallationFlags installFlags)
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62 #if NET_1_1
63                 [MonoTODO]
64                 public void InstallAssemblyFromConfig ([MarshalAs(UnmanagedType.IUnknown)] ref RegistrationConfig regConfig)
65                 {
66                         throw new NotImplementedException ();
67                 }
68 #endif
69
70                 public void UninstallAssembly (string assembly, string application)
71                 {
72                         UninstallAssembly (assembly, application, null);
73                 }
74
75                 [MonoTODO]
76                 public void UninstallAssembly (string assembly, string application, string partition)
77                 {
78                         throw new NotImplementedException ();
79                 }
80
81 #if NET_1_1
82                 [MonoTODO]
83                 public void UninstallAssemblyFromConfig ([MarshalAs(UnmanagedType.IUnknown)] ref RegistrationConfig regConfig)
84                 {
85                         throw new NotImplementedException ();
86                 }
87 #endif
88
89                 #endregion // Methods
90         }
91 }