CallType Enumeration

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Indicates the type of procedure being invoked when calling the CallByName function.

Namespace:  Microsoft.VisualBasic
Assembly:  Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

Syntax

'Declaration
Public Enumeration CallType
public enum CallType

Members

Member name Description
Method A method is being invoked. This member is equivalent to the Visual Basic constant vbMethod.
Get A property value is being retrieved. This member is equivalent to the Visual Basic constant vbGet.
Let An Object property value is being determined. This member is equivalent to the Visual Basic constant vbLet.
Set A property value is being determined. This member is equivalent to the Visual Basic constant vbSet.

Remarks

When you call the CallByName function, you can use the following CallType enumeration members in your code in place of the actual values. The UseCallType argument takes the CallType enumeration members.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference