Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MarshalByValueComponent.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22141db2343473283016254c7f4ce6f017d82363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// System.ComponentModel.MarshalByValueComponent.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

using System;

namespace System.ComponentModel
{
	/// <summary>
	/// Implements IComponent and provides the base implementation for remotable components that are marshaled by value (a copy of the serialized object is passed).
	/// </summary>
	public class MarshalByValueComponent : IComponent, IDisposable, IServiceProvider
	{
		[MonoTODO]
		public MarshalByValueComponent () {
			// TODO: need to implement for some component model
			//        but do not throw a NotImplementedException
		}

		[MonoTODO]
		public void Dispose () {
			// TODO: need to do, but do not
			// throw a NotImplementedException
		}

		[MonoTODO]
		protected virtual void Dispose (bool disposing) {
		}

		[MonoTODO]
		public virtual object GetService (Type service) {
			return null;
		}
		
		public virtual IContainer Container {
			[MonoTODO]
			get {
				return null;
			}
		}

		public virtual bool DesignMode {
			[MonoTODO]
			get {
				return false;
			}
		}

		public virtual ISite Site {
			[MonoTODO]
			get {
				// TODO: need to get Site
				return null;
			}

			[MonoTODO]
			set {
				// TODO: need to set Site
			}
		}

		protected EventHandlerList Events {
			[MonoTODO]
			get {
				// TODO: need to do, but do not
				// throw a NotImplementedException
				return null;
			}
		}
		
		public event EventHandler Disposed;
	}
}