mscorlib(4.0.0.0) API with additions
System.Dynamic.CallInfo Class Reference

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...
 

Detailed Description

Describes arguments in the dynamic binding process.

Definition at line 10 of file CallInfo.cs.

Constructor & Destructor Documentation

◆ CallInfo() [1/2]

System.Dynamic.CallInfo.CallInfo ( int  argCount,
params string []  argNames 
)

Creates a new PositionalArgumentInfo.

Parameters
argCountThe number of arguments.
argNamesThe argument names.

Definition at line 44 of file CallInfo.cs.

◆ CallInfo() [2/2]

System.Dynamic.CallInfo.CallInfo ( int  argCount,
IEnumerable< string >  argNames 
)

Creates a new CallInfo that represents arguments in the dynamic binding process.

Parameters
argCountThe number of arguments.
argNamesThe argument names.

Definition at line 53 of file CallInfo.cs.

Member Function Documentation

◆ Equals()

override bool System.Dynamic.CallInfo.Equals ( object  obj)

Determines whether the specified CallInfo instance is considered equal to the current.

Parameters
objThe instance of T:System.Dynamic.CallInfo to compare with the current instance.
Returns
true if the specified instance is equal to the current one otherwise, false.

Definition at line 78 of file CallInfo.cs.

◆ GetHashCode()

override int System.Dynamic.CallInfo.GetHashCode ( )

Serves as a hash function for the current T:System.Dynamic.CallInfo.

Returns
A hash code for the current T:System.Dynamic.CallInfo.

Definition at line 69 of file CallInfo.cs.

Property Documentation

◆ ArgumentCount

int System.Dynamic.CallInfo.ArgumentCount
get

The number of arguments.

Returns
The number of arguments.

Definition at line 20 of file CallInfo.cs.

◆ ArgumentNames

ReadOnlyCollection<string> System.Dynamic.CallInfo.ArgumentNames
get

The argument names.

Returns
The read-only collection of argument names.

Definition at line 32 of file CallInfo.cs.


The documentation for this class was generated from the following file: