CallInfo Class
Describes arguments in the dynamic binding process.
Assembly: System.Core (in System.Core.dll)
| Name | Description | |
|---|---|---|
![]() | CallInfo(Int32, IEnumerable<String^>^) | Creates a new CallInfo that represents arguments in the dynamic binding process. |
![]() | CallInfo(Int32, array<String^>^) | Creates a new PositionalArgumentInfo. |
| Name | Description | |
|---|---|---|
![]() | ArgumentCount | The number of arguments. |
![]() | ArgumentNames | The argument names. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified CallInfo instance is considered equal to the current.(Overrides Object::Equals(Object^).) |
![]() | GetHashCode() | Serves as a hash function for the current CallInfo.(Overrides Object::GetHashCode().) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
ArgumentCount - all inclusive number of arguments.
ArgumentNames - names for those arguments that are named.
Argument names match to the argument values in left to right order and last name corresponds to the last argument.
SampleMethod(arg1, arg2, arg3, name1 = arg4, name2 = arg5, name3 = arg6) will correspond to ArgumentCount: 6 ArgumentNames: {"name1", "name2", "name3"}.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

