IModulePublicPropertyNames Method |
Gets the
Module's public property names.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxstring[] PublicPropertyNames(
string ClassName,
bool IncludeFields
)
Function PublicPropertyNames (
ClassName As String,
IncludeFields As Boolean
) As String()
array<String^>^ PublicPropertyNames(
String^ ClassName,
bool IncludeFields
)
Parameters
- ClassName String
-
The name of the class in the module.
Omit or use "" to get the top level property names.
- IncludeFields Boolean
-
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.
Remarks
Return an array of the public property names defined by a class in this module.
See Also