DotNetCall.MemberType

Syntax

DotNetCall.MemberType

Data Type

DotNetModuleMemberTypes

Use the following constants with this data type:

  • DotNetMember_CallConstructor –(Value: 4) Specifies that the DotNetCall object calls a constructor.
  • DotNetMember_CallMethod –(Value: 1) Specifies that the DotNetCall object calls a method.
  • DotNetMember_CreateRemote –(Value: 5) Specifies that the DotNetCall object creates a remote object.
    Note

    Starting with TestStand 2024 Q4, 'Create Remote Object' is no longer supported.

  • DotNetMember_DoNotCall –(Value: 0) Specifies that you have not completely specified the DotNetCall object and that the object does not call a method or access a property or field.
  • DotNetMember_GetProperty –(Value: 2) Specifies that the DotNetCall object gets a property.
  • DotNetMember_SetProperty –(Value: 3) Specifies that the DotNetCall object sets a property.
  • DotNetMember_UseExisting –(Value: 6) Specifies that the DotNetCall object uses an existing object a TestStand variable specifies as the .NET object on which to make the next call.

Purpose

Returns the type of call the current DotNetCall object is configured to make. Use the DotNetCall.LoadPrototypeFromSignature method to change the member specifications for a DotNetCall object.

See Also

DotNetCall.MemberName

DotNetCall.LoadPrototypeFromSignature

DotNetModuleMemberTypes