Merge pull request #439 from mono-soc-2012/garyb/iconfix
[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                 [MonoTODO]
63                 public void InstallAssemblyFromConfig ([MarshalAs(UnmanagedType.IUnknown)] ref RegistrationConfig regConfig)
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 public void UninstallAssembly (string assembly, string application)
69                 {
70                         UninstallAssembly (assembly, application, null);
71                 }
72
73                 [MonoTODO]
74                 public void UninstallAssembly (string assembly, string application, string partition)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 [MonoTODO]
80                 public void UninstallAssemblyFromConfig ([MarshalAs(UnmanagedType.IUnknown)] ref RegistrationConfig regConfig)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 #endregion // Methods
86         }
87 }