Merge pull request #1304 from slluis/mac-proxy-autoconfig
[mono.git] / mcs / class / System / System.ComponentModel / MarshalByValueComponent.cs
1 //
2 // System.ComponentModel.MarshalByValueComponent.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Ximian, Inc
9 // (C) 2003 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.ComponentModel;
35 using System.ComponentModel.Design;
36 using System.Runtime.InteropServices;
37
38 namespace System.ComponentModel
39 {
40         /// <summary>
41         /// Implements IComponent and provides the base implementation for remotable components that are marshaled by value (a copy of the serialized object is passed).
42         /// </summary>
43         [DesignerCategory ("Component"), TypeConverter (typeof (ComponentConverter))]
44         [Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, " + Consts.AssemblySystem_Design, typeof (IRootDesigner))]
45         [ComVisible (true)]
46         public class MarshalByValueComponent : IComponent, IDisposable, IServiceProvider
47         {
48                 private EventHandlerList eventList;
49                 private ISite mySite;
50                 private object disposedEvent = new object ();
51
52                 public MarshalByValueComponent ()
53                 {
54                 }
55
56                 public void Dispose ()
57                 {
58                         Dispose (true);
59                         GC.SuppressFinalize (this);
60                 }
61
62                 [MonoTODO]
63                 protected virtual void Dispose (bool disposing)
64                 {
65                         if (disposing) {
66                                 // free managed objects contained here
67                         }
68
69                         // Free unmanaged objects
70                         // Set fields to null
71                 }
72
73                 ~MarshalByValueComponent ()
74                 {
75                         Dispose (false);
76                 }
77
78                 public virtual object GetService (Type service) 
79                 {
80                         if (mySite != null) {
81                                 return mySite.GetService(service); 
82                         }
83                         return null; 
84                 }
85                 
86                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
87                 public virtual IContainer Container {
88                         get {
89                                 if (mySite == null)
90                                         return null;
91                                 return mySite.Container;
92                         }
93                 }
94
95                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
96                 public virtual bool DesignMode {
97                         get {
98                                 if (mySite == null)
99                                         return false;
100                                 return mySite.DesignMode;
101                         }
102                 }
103
104                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
105                 public virtual ISite Site {
106                         get { return mySite; }
107                         set { mySite = value; }
108                 }
109
110                 public override string ToString ()
111                 {
112                         if (mySite == null)
113                                 return GetType ().ToString ();
114                         return String.Format ("{0} [{1}]", mySite.Name, GetType ().ToString ());
115                 }
116
117                 protected EventHandlerList Events {
118                         get {
119                                 if (eventList == null)
120                                         eventList = new EventHandlerList ();
121
122                                 return eventList;
123                         }
124                 }
125                 
126                 public event EventHandler Disposed
127                 {
128                         add { Events.AddHandler (disposedEvent, value); }
129                         remove { Events.RemoveHandler (disposedEvent, value); }
130                 }
131         }
132 }
133