|
TableOperationsTGetFieldNames Method
|
Gets the field names for the table; if escaped is true, also includes any escaping as defined in model.
Namespace: GSF.Data.ModelAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax public string[] GetFieldNames(
bool escaped = true
)
Public Function GetFieldNames (
Optional escaped As Boolean = true
) As String()
public:
virtual array<String^>^ GetFieldNames(
bool escaped = true
) sealed
abstract GetFieldNames :
?escaped : bool
(* Defaults:
let _escaped = defaultArg escaped true
*)
-> string[]
override GetFieldNames :
?escaped : bool
(* Defaults:
let _escaped = defaultArg escaped true
*)
-> string[]
function GetFieldNames(escaped);
View SourceParameters
- escaped Boolean (Optional)
- Flag that determines if field names should include any escaping as defined in the model; defaults to true.
Return Value
StringArray of field names.
Implements
ITableOperationsGetFieldNames(Boolean)Remarks See Also