DotNetModuleMemberTypes

Use these constants with the DotNetCall.MemberType property to specify the type of member the module accesses when it executes.

  • 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.

See Also

DotNetCall.MemberType