| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // System.Runtime.Remoting.Proxies.ProxyAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // Copyright (C) Ximian, Inc 2002.
- //
- using System;
- using System.Runtime.Remoting;
- using System.Runtime.Remoting.Activation;
- using System.Runtime.Remoting.Contexts;
- namespace System.Runtime.Remoting.Proxies {
- [AttributeUsage (AttributeTargets.Class)]
- public class ProxyAttribute : Attribute, IContextAttribute
- {
- public ProxyAttribute ()
- {
- }
- [MonoTODO]
- public virtual MarshalByRefObject CreateInstance (Type serverType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual RealProxy CreateProxy (ObjRef objref, Type serverType, object serverObject, Context serverContext)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void GetPropertiesForNewContext (IConstructionCallMessage msg)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool IsContextOK (Context ctx, IConstructionCallMessage msg)
- {
- throw new NotImplementedException ();
- }
- }
- }
|