mscorlib(4.0.0.0) API with additions
|
Describes arguments in the dynamic binding process. More...
Public Member Functions | |
CallInfo (int argCount, params string[] argNames) | |
Creates a new PositionalArgumentInfo. More... | |
CallInfo (int argCount, IEnumerable< string > argNames) | |
Creates a new CallInfo that represents arguments in the dynamic binding process. More... | |
override int | GetHashCode () |
Serves as a hash function for the current T:System.Dynamic.CallInfo. More... | |
override bool | Equals (object obj) |
Determines whether the specified CallInfo instance is considered equal to the current. More... | |
Properties | |
int | ArgumentCount [get] |
The number of arguments. More... | |
ReadOnlyCollection< string > | ArgumentNames [get] |
The argument names. More... | |
Describes arguments in the dynamic binding process.
Definition at line 10 of file CallInfo.cs.
System.Dynamic.CallInfo.CallInfo | ( | int | argCount, |
params string [] | argNames | ||
) |
Creates a new PositionalArgumentInfo.
argCount | The number of arguments. |
argNames | The argument names. |
Definition at line 44 of file CallInfo.cs.
System.Dynamic.CallInfo.CallInfo | ( | int | argCount, |
IEnumerable< string > | argNames | ||
) |
Creates a new CallInfo that represents arguments in the dynamic binding process.
argCount | The number of arguments. |
argNames | The argument names. |
Definition at line 53 of file CallInfo.cs.
override bool System.Dynamic.CallInfo.Equals | ( | object | obj | ) |
Determines whether the specified CallInfo instance is considered equal to the current.
obj | The instance of T:System.Dynamic.CallInfo to compare with the current instance. |
Definition at line 78 of file CallInfo.cs.
override int System.Dynamic.CallInfo.GetHashCode | ( | ) |
Serves as a hash function for the current T:System.Dynamic.CallInfo.
Definition at line 69 of file CallInfo.cs.
|
get |
|
get |
The argument names.
Definition at line 32 of file CallInfo.cs.