* CADMessages.cs: Added methods for setting and getting the logical call
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / ConstructionResponse.cs
1 //
2 // System.Runtime.Remoting.Messaging.ConstructionResponse.cs
3 //
4 // Author: Lluis Sanchez Gual (lluis@ideary.com)
5 //
6 // (C) 2003, Lluis Sanchez Gual
7 //\r
8 \r
9 using System;\r
10 using System.Collections;\r
11 using System.Runtime.Remoting.Activation;\r
12 using System.Runtime.Serialization;
13 \r
14 namespace System.Runtime.Remoting.Messaging\r
15 {\r
16         [Serializable] [CLSCompliant (false)]
17         public class ConstructionResponse: MethodResponse, IConstructionReturnMessage\r
18         {\r
19                 public ConstructionResponse (Header[] headers, IMethodCallMessage mcm)\r
20                         : base (headers, mcm)\r
21                 {\r
22                 }\r
23                 \r
24                 internal ConstructionResponse(object resultObject, LogicalCallContext callCtx, IMethodCallMessage msg)\r
25                         : base (resultObject, null, callCtx, msg)\r
26                 {\r
27                 }\r
28 \r
29                 internal ConstructionResponse (SerializationInfo info, StreamingContext context): base (info, context)
30                 {
31                 }\r
32                 
33                 public override IDictionary Properties \r
34                 {\r
35                         get { return base.Properties; }\r
36                 }\r
37         }\r
38 }\r