IContextPropertyActivator.cs 635 B

123456789101112131415161718192021
  1. //
  2. // System.Runtime.Remoting.Contexts.IContextPropertyActivator..cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System.Runtime.Remoting.Activation;
  9. namespace System.Runtime.Remoting.Contexts {
  10. public interface IContextPropertyActivator
  11. {
  12. void CollectFromClientContext (IConstructionCallMessage msg);
  13. void CollectFromServerContext (IConstructionReturnMessage msg);
  14. bool DeliverClientContextToServerContext (IConstructionCallMessage msg);
  15. bool DeliverServerContextToClientContext (IConstructionReturnMessage msg);
  16. bool IsOKToActivate (IConstructionCallMessage msg);
  17. }
  18. }