* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / ErrorMessage.cs
1 //
2 // System.Runtime.Remoting.Messaging.ErrorMessage.cs
3 //
4 // Author:
5 //   Patrik Torstensson
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
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.
31 //
32
33 using System;
34 using System.Collections;
35 using System.Reflection;
36
37 namespace System.Runtime.Remoting.Messaging {
38
39     // simple message to avoid serialization of crap data
40     [Serializable]
41     internal class ErrorMessage : IMethodCallMessage\r
42     {
43                 string _uri = "Exception";
44                 
45                 public ErrorMessage()
46                 {
47                 }
48                 
49                 public int ArgCount {
50                         get {
51                                 return 0;
52                         }
53                 }
54                 
55                 public object [] Args {
56                         get {
57                                 return null;
58                         }
59                 }
60                 
61                 public bool HasVarArgs {
62                         get {
63                                 return false;
64                         }
65                 }
66
67                 public MethodBase MethodBase {
68                         get {
69                                 return null;
70                         }
71                 }
72
73                 public string MethodName {
74                         get {
75                                 return "unknown";
76                         }
77                 }
78
79                 public object MethodSignature {
80                         get {
81                                 return null;
82                         }
83                 }
84
85                 public virtual IDictionary Properties {
86                         get {
87                                 return null;
88                         }
89                 }
90
91                 public string TypeName {
92                         get {
93                                 return "unknown";
94                         }
95                 }
96
97                 public string Uri {
98                         get {
99                                 return _uri;
100                         }
101
102                         set {
103                                 _uri = value;
104                         }
105                 }
106
107                 public object GetArg (int arg_num)
108                 {
109                         return null;
110                 }
111                 
112                 public string GetArgName (int arg_num)
113                 {
114                         return "unknown";
115                 }
116
117                 public int InArgCount                  \r
118                 { \r
119                         get { \r
120                                 return 0;\r
121                         } \r
122                 }\r
123 \r
124                 public String GetInArgName(int index)   \r
125                 { \r
126                         return null; \r
127                 }\r
128 \r
129                 public Object GetInArg(int argNum)      \r
130                 { \r
131                         return null;\r
132                 }\r
133 \r
134                 public Object[] InArgs             \r
135                 { \r
136                         get { return null; }\r
137                 }\r
138 \r
139                 public LogicalCallContext LogicalCallContext \r
140                 { \r
141                         get { return null; } \r
142                 }\r
143     }
144 }