ITableOperationsTryGetFieldAttributeTAttribute(String, TAttribute) Method

Attempts to get the specified attribute for a field.

Definition

Namespace: Gemstone.Data.Model
Assembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.158 -- Release Build+a7370acff9f7a1e0ca1927f709880b2a82e0bdf0
bool TryGetFieldAttribute<TAttribute>(
	string fieldName,
	out TAttribute? attribute
)
where TAttribute : Attribute

Parameters

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

Boolean
true if attribute was found; otherwise, false.

See Also