ModulePublicPropertyNames Method |
Gets the
Module's public property names.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic string[] PublicPropertyNames(
string ClassName = null,
bool IncludeFields = false
)
Public Function PublicPropertyNames (
Optional ClassName As String = Nothing,
Optional IncludeFields As Boolean = false
) As String()
public:
virtual array<String^>^ PublicPropertyNames(
String^ ClassName = nullptr,
bool IncludeFields = false
) sealed
Parameters
- ClassName String (Optional)
-
The name of the class in the module.
Omit or use "" to get the top level property names.
- IncludeFields Boolean (Optional)
-
Use True to include the public field names.
Omit or use False to get only public property names.
Return Value
String
The
Module's public property names.
Implements
IModulePublicPropertyNames(String, Boolean)
Remarks
Return an array of the public property names defined by a class in this module.
See Also