DotNetAdapterGetMemberNamesOptions

Use these constants with the options parameter of the DotNetAdapter.GetMemberNames method. If you pass no option (Value: 0x0), the adapter retrieves non-instance members only, including constructors, static members, and special options, such as Create Remote Object and Use Existing Object.
Note

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

  • DotNetAdapterGetMemberNamesOption_InstanceMembers –(Value: 0x1) The DotNetAdapter.GetMemberNames method retrieves only instance members. The adapter does not retrieve static members or constructors.
  • DotNetAdapterGetMemberNamesOption_AllowLoadingMixedAssemblies –(Value: 0x2) The DotNetAdapter.GetMemberNames method will allow retrieving member names for C++/CLI (mixed-mode) assemblies, but these assemblies can't be unloaded. .NET Core doesn't allow loading C++/CLI assemblies into AssemblyLoadContexts which can be unloaded(collectible).

See Also

DotNetAdapter.GetMemberNames