DotNetAdapter.GetMemberNames
- Updated2025-07-21
- 1 minute(s) read
DotNetAdapter.GetMemberNames
Syntax
DotNetAdapter.GetMemberNames( assemblyLocationParam, assemblyPathParam, classTypeNameParam, options, signatures, displayNames)
Purpose
Retrieves the list of public member names found in the given class.
Starting with TestStand 2024 Q4, loading assemblies from the Global Assembly Cache (GAC) is no longer supported.
Parameters
assemblyLocationParam As DotNetModuleAssemblyLocations
[In] Specifies whether the assembly is located in a file or in the Global Assembly Cache (GAC).
assemblyPathParam As String
[In] Specifies the pathname of the assembly.
classTypeNameParam As String
[In] Specifies the fully specified type name for the class, including namespaces.
options As Long
[In] Specifies one or more DotNetAdapterGetMemberNamesOptions constants. Use the bitwise-OR operator to specify multiple flags.
signatures As String Array
[Out] Returns an array that contains the full signature for each member found in the specified class. This array is parallel to the displayNames array.
displayNames As String Array
[Out] Returns an array that contains the display name for each member found in the specified class. This array is parallel to the signatures array.
Display names may be slightly different than the member signatures. For example, static members have the static suffix at the end of the display name.