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
Public method CallInfo(Int32, IEnumerable<String>) Creates a new CallInfo that represents arguments in the dynamic binding process.
Public method CallInfo(Int32, array<String[]) Creates a new PositionalArgumentInfo.

Top

Properties

  Name Description
Public property ArgumentCount The number of arguments.
Public property ArgumentNames The argument names.

Top

Methods

  Name Description
Public method Equals Determines whether the specified CallInfo instance is considered equal to the current. (Overrides Object.Equals(Object).)
Protected method 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.)
Public method GetHashCode Serves as a hash function for the current CallInfo. (Overrides Object.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method 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.

See Also

Reference