| 
            
              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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
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 : AttributeJavaScript 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