Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.Remoting.Messaging/IMethodMessage.cs')
-rw-r--r--mcs/class/corlib/System.Runtime.Remoting.Messaging/IMethodMessage.cs55
1 files changed, 0 insertions, 55 deletions
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Messaging/IMethodMessage.cs b/mcs/class/corlib/System.Runtime.Remoting.Messaging/IMethodMessage.cs
deleted file mode 100644
index 49cadf428ec..00000000000
--- a/mcs/class/corlib/System.Runtime.Remoting.Messaging/IMethodMessage.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-//
-// System.Runtime.Remoting.Messaging.IMethodMessage..cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System.Reflection;
-
-namespace System.Runtime.Remoting.Messaging {
-
- public interface IMethodMessage {
- int ArgCount {
- get;
- }
-
- object [] Args {
- get;
- }
-
- bool HasVarArgs {
- get;
- }
-
- LogicalCallContext LogicalCallContext {
- get;
- }
-
- MethodBase MethodBase {
- get;
- }
-
- string MethodName {
- get;
- }
-
- object MethodSignature {
- get;
- }
-
- string TypeName {
- get;
- }
-
- string Uri {
- get;
- }
-
- object GetArg (int arg_num);
- string GetArgName (int arg_num);
- }
-}
-