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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.ComponentModel/MarshalByValueComponent.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/MarshalByValueComponent.cs78
1 files changed, 0 insertions, 78 deletions
diff --git a/mcs/class/System/System.ComponentModel/MarshalByValueComponent.cs b/mcs/class/System/System.ComponentModel/MarshalByValueComponent.cs
deleted file mode 100644
index 22141db2343..00000000000
--- a/mcs/class/System/System.ComponentModel/MarshalByValueComponent.cs
+++ /dev/null
@@ -1,78 +0,0 @@
-//
-// 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;
- }
-}