**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / ErrorMessage.cs
blob2a921c239d4597ebf7ae910af5813163e3e890cd
1 //
2 // System.Runtime.Remoting.Messaging.ErrorMessage.cs
3 //
4 // Author:
5 // Patrik Torstensson
6 //
7 // (C) Ximian, Inc. http://www.ximian.com
8 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System;
34 using System.Collections;
35 using System.Reflection;
37 namespace System.Runtime.Remoting.Messaging {
39 // simple message to avoid serialization of crap data
40 [Serializable]
41 internal class ErrorMessage : IMethodCallMessage
43 string _uri = "Exception";
45 public ErrorMessage()
49 public int ArgCount {
50 get {
51 return 0;
55 public object [] Args {
56 get {
57 return null;
61 public bool HasVarArgs {
62 get {
63 return false;
67 public MethodBase MethodBase {
68 get {
69 return null;
73 public string MethodName {
74 get {
75 return "unknown";
79 public object MethodSignature {
80 get {
81 return null;
85 public virtual IDictionary Properties {
86 get {
87 return null;
91 public string TypeName {
92 get {
93 return "unknown";
97 public string Uri {
98 get {
99 return _uri;
102 set {
103 _uri = value;
107 public object GetArg (int arg_num)
109 return null;
112 public string GetArgName (int arg_num)
114 return "unknown";
117 public int InArgCount
119 get {
120 return 0;
124 public String GetInArgName(int index)
126 return null;
129 public Object GetInArg(int argNum)
131 return null;
134 public Object[] InArgs
136 get { return null; }
139 public LogicalCallContext LogicalCallContext
141 get { return null; }