TableOperationsTTryGetFieldAttributeTAttribute(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.177 -- Release Build+d96749616716c7e31d7afb14792fd635b01e16cd
public bool TryGetFieldAttribute<TAttribute>(
string fieldName,
out TAttribute? attribute
)
where TAttribute : Attribute
public:
generic<typename TAttribute>
where TAttribute : Attribute
virtual bool TryGetFieldAttribute(
String^ fieldName,
[OutAttribute] TAttribute% attribute
) sealed
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.
ITableOperationsTryGetFieldAttributeTAttribute(String, TAttribute)