ModulePublicMethodNames Method |
Gets the
Module's public method names.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic string[] PublicMethodNames(
string ClassName = null
)
Public Function PublicMethodNames (
Optional ClassName As String = Nothing
) As String()
public:
virtual array<String^>^ PublicMethodNames(
String^ ClassName = nullptr
) sealed
Parameters
- ClassName String (Optional)
-
The name of the class in the module.
Omit or use "" to get the top level method names.
Return Value
String
The
Module's public method names.
Implements
IModulePublicMethodNames(String)
Remarks
Return an array of the public method names defined by a class in this module.
See Also