IConstructionCallMessage.cs 609 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Runtime.Remoting.Activation.IConstructionCallMessage.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Collections;
  10. using System.Runtime.Remoting.Messaging;
  11. namespace System.Runtime.Remoting.Activation {
  12. public interface IConstructionCallMessage : IMessage, IMethodCallMessage, IMethodMessage {
  13. Type ActivationType {
  14. get;
  15. }
  16. string ActivationTypeName {
  17. get;
  18. }
  19. IActivator Activator {
  20. get;
  21. set;
  22. }
  23. object [] CallSiteActivationAttributes {
  24. get;
  25. }
  26. IList ContextProperties {
  27. get;
  28. }
  29. }
  30. }