X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.Remoting.Messaging%2FConstructionResponse.cs;h=1cceeccb684f56d59713077403a8cbd3e8f434dd;hb=a9d2a48766ac075d19690ea1e2304bfb0d9e79c8;hp=41f6d79068f19bc9be9b5a6da917507ba96a7ea7;hpb=0443306d611d0830e27327e1f0a3ef3457dfa535;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ConstructionResponse.cs b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ConstructionResponse.cs index 41f6d79068f..1cceeccb684 100644 --- a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ConstructionResponse.cs +++ b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ConstructionResponse.cs @@ -4,7 +4,7 @@ // Author: Lluis Sanchez Gual (lluis@ideary.com) // // (C) 2003, Lluis Sanchez Gual -// +// // // Copyright (C) 2004 Novell, Inc (http://www.novell.com) @@ -28,38 +28,39 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // - -using System; -using System.Collections; -using System.Runtime.Remoting.Activation; + +using System; +using System.Collections; +using System.Runtime.Remoting.Activation; using System.Runtime.Serialization; - -namespace System.Runtime.Remoting.Messaging -{ + +namespace System.Runtime.Remoting.Messaging +{ [Serializable] [CLSCompliant (false)] - public class ConstructionResponse: MethodResponse, IConstructionReturnMessage - { - public ConstructionResponse (Header[] headers, IMethodCallMessage mcm) - : base (headers, mcm) - { - } - - internal ConstructionResponse(object resultObject, LogicalCallContext callCtx, IMethodCallMessage msg) - : base (resultObject, null, callCtx, msg) - { - } - - internal ConstructionResponse (Exception e, IMethodCallMessage msg): base (e, msg) - { - } - + [System.Runtime.InteropServices.ComVisible (true)] + public class ConstructionResponse: MethodResponse, IConstructionReturnMessage + { + public ConstructionResponse (Header[] h, IMethodCallMessage mcm) + : base (h, mcm) + { + } + + internal ConstructionResponse(object resultObject, LogicalCallContext callCtx, IMethodCallMessage msg) + : base (resultObject, null, callCtx, msg) + { + } + + internal ConstructionResponse (Exception e, IMethodCallMessage msg): base (e, msg) + { + } + internal ConstructionResponse (SerializationInfo info, StreamingContext context): base (info, context) { - } + } - public override IDictionary Properties - { - get { return base.Properties; } - } - } -} + public override IDictionary Properties + { + get { return base.Properties; } + } + } +}