| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Runtime.Remoting.Activation.IConstructionCallMessage.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Collections;
- using System.Runtime.Remoting.Messaging;
- namespace System.Runtime.Remoting.Activation {
- public interface IConstructionCallMessage : IMessage, IMethodCallMessage, IMethodMessage {
- Type ActivationType {
- get;
- }
- string ActivationTypeName {
- get;
- }
- IActivator Activator {
- get;
- set;
- }
- object [] CallSiteActivationAttributes {
- get;
- }
- IList ContextProperties {
- get;
- }
- }
- }
|