mscorlib(4.0.0.0) API with additions
IMethodCallMessage.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
9  {
13  int InArgCount
14  {
15  [SecurityCritical]
16  get;
17  }
18 
22  object[] InArgs
23  {
24  [SecurityCritical]
25  get;
26  }
27 
32  [SecurityCritical]
33  string GetInArgName(int index);
34 
39  [SecurityCritical]
40  object GetInArg(int argNum);
41  }
42 }
int InArgCount
Gets the number of arguments in the call that are not marked as out parameters.
string GetInArgName(int index)
Returns the name of the specified argument that is not marked as an out parameter.
Defines the method call message interface.
Definition: __Canon.cs:3
Defines the method message interface.
Contains communication data sent between cooperating message sinks.
Definition: IMessage.cs:9
object [] InArgs
Gets an array of arguments that are not marked as out parameters.
object GetInArg(int argNum)
Returns the specified argument that is not marked as an out parameter.