ITableOperationsTryGetFieldAttributeTAttribute(String, TAttribute) Method
Attempts to get the specified attribute for a field.
Namespace: Gemstone.Data.ModelAssembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.137 -- Release Build+bf396311d630d9a0959afedb17412b40a2acb327
bool 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
)
JavaScript does not support generic types or methods.
- fieldName String
- Name of field to use for attribute lookup.
- attribute TAttribute
- Attribute that was found, if any.
- TAttribute
- Type of attribute to attempt to get.
Booleantrue if attribute was found; otherwise,
false.