2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System / System.ComponentModel / MarshalByValueComponent.cs
blobef9ffa745873705b48382957783e8328c14efc8f
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
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.
33 using System;
34 using System.ComponentModel;
35 using System.ComponentModel.Design;
36 using System.Runtime.InteropServices;
38 namespace System.ComponentModel
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 #if NET_2_0
46 [ComVisible (true)]
47 #endif
48 public class MarshalByValueComponent : IComponent, IDisposable, IServiceProvider
50 private EventHandlerList eventList;
51 private ISite mySite;
52 private object disposedEvent = new object ();
54 public MarshalByValueComponent ()
58 public void Dispose ()
60 Dispose (true);
61 GC.SuppressFinalize (this);
64 [MonoTODO]
65 protected virtual void Dispose (bool disposing)
67 if (disposing) {
68 // free managed objects contained here
71 // Free unmanaged objects
72 // Set fields to null
75 #if !TARGET_JVM
76 ~MarshalByValueComponent ()
78 Dispose (false);
80 #endif
82 public virtual object GetService (Type service)
84 if (mySite != null) {
85 return mySite.GetService(service);
87 return null;
90 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
91 public virtual IContainer Container {
92 get {
93 if (mySite == null)
94 return null;
95 return mySite.Container;
99 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
100 public virtual bool DesignMode {
101 get {
102 if (mySite == null)
103 return false;
104 return mySite.DesignMode;
108 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
109 public virtual ISite Site {
110 get { return mySite; }
111 set { mySite = value; }
114 public override string ToString ()
116 if (mySite == null)
117 return GetType ().ToString ();
118 return String.Format ("{0} [{1}]", mySite.Name, GetType ().ToString ());
121 protected EventHandlerList Events {
122 get {
123 if (eventList == null)
124 eventList = new EventHandlerList ();
126 return eventList;
130 public event EventHandler Disposed
132 add { Events.AddHandler (disposedEvent, value); }
133 remove { Events.RemoveHandler (disposedEvent, value); }