Gets a list of fields names with the specificed attribute in the DEFALUT disease view.

Namespace: Caisis.BOL
Assembly: Caisis.BOL (in Caisis.BOL.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static IEnumerable<string> GetFieldNamesWithMetadataAttribute(
	string table,
	string attributeName
)
Visual Basic
Public Shared Function GetFieldNamesWithMetadataAttribute ( 
	table As String,
	attributeName As String
) As IEnumerable(Of String)
Visual C++
public:
static IEnumerable<String^>^ GetFieldNamesWithMetadataAttribute(
	String^ table, 
	String^ attributeName
)

Parameters

table
Type: System..::..String
The name of the table to search
attributeName
Type: System..::..String
The name of the attribute

Return Value

Type: IEnumerable<(Of <(<'String>)>)>
A list of fields with attribute

See Also