|
ITableOperationsTryGetFieldAttributeTAttribute(String, TAttribute) Method
|
Attempts to get the specified attribute for a field.
Namespace: GSF.Data.ModelAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxbool TryGetFieldAttribute<TAttribute>(
string fieldName,
out TAttribute attribute
)
where TAttribute : Attribute
Function TryGetFieldAttribute(Of TAttribute As Attribute) (
fieldName As String,
<OutAttribute> ByRef attribute As TAttribute
) As Boolean
generic<typename TAttribute>
where TAttribute : Attribute
bool TryGetFieldAttribute(
String^ fieldName,
[OutAttribute] TAttribute% attribute
)
abstract TryGetFieldAttribute :
fieldName : string *
attribute : 'TAttribute byref -> bool when 'TAttribute : Attribute
JavaScript does not support generic types or methods.
View SourceParameters
- fieldName String
- Name of field to use for attribute lookup.
- attribute TAttribute
- Attribute that was found, if any.
Type Parameters
- TAttribute
- Type of attribute to attempt to get.
Return Value
Booleantrue if attribute was found; otherwise,
false.
See Also