AdapterCollectionBaseTTryGetAdapterTValue Method
Attempts to get the adapter with the specified value given testItem function.
Namespace: Gemstone.Timeseries.AdaptersAssembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.166 -- Release Build+57b72ea94712c6fb93701495d2d13b86cd7b5162
protected virtual bool TryGetAdapter<TValue>(
TValue value,
Func<T, TValue, bool> testItem,
out T? adapter
)
Protected Overridable Function TryGetAdapter(Of TValue) (
value As TValue,
testItem As Func(Of T, TValue, Boolean),
<OutAttribute> ByRef adapter As T
) As Boolean
protected:
generic<typename TValue>
virtual bool TryGetAdapter(
TValue value,
Func<T, TValue, bool>^ testItem,
[OutAttribute] T% adapter
)
JavaScript does not support generic types or methods.
- value TValue
- Value of adapter to get.
- testItem FuncT, TValue, Boolean
- Function delegate used to test item value.
- adapter T
- Adapter reference if found; otherwise null.
- TValue
[Missing <typeparam name="TValue"/> documentation for "M:Gemstone.Timeseries.Adapters.AdapterCollectionBase`1.TryGetAdapter``1(``0,System.Func{`0,``0,System.Boolean},`0@)"]
Booleantrue if adapter with the specified
value was found; otherwise
false.