CallInfo Class
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Describes arguments in the dynamic binding process.
Inheritance Hierarchy
System.Object
System.Dynamic.CallInfo
Namespace: System.Dynamic
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public NotInheritable Class CallInfo
public sealed class CallInfo
The CallInfo type exposes the following members.
Constructors
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. |
Top
Properties
Name | Description | |
---|---|---|
ArgumentCount | The number of arguments. | |
ArgumentNames | The argument names. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Determines whether the specified CallInfo instance is considered equal to the current. (Overrides Object.Equals(Object).) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for the current CallInfo. (Overrides Object.GetHashCode().) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Remarks
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.
Examples
SampleMethod(arg1, arg2, arg3, name1 = arg4, name2 = arg5, name3 = arg6) will correspond to ArgumentCount: 6 ArgumentNames: {"name1", "name2", "name3"}.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.