Interface IParameterizedSource<TParameter, TResult>
A general purpose selection component that accepts a value and returns a value.
Namespace: ExtendedXmlSerializer.Core.Sources
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IParameterizedSource<in TParameter, out TResult>
Type Parameters
|
TParameter
The type to accept. |
|
TResult
The return type. |
Methods
Get(TParameter)
Performs the selection.
Declaration
TResult Get(TParameter parameter)
Parameters
|
TParameter
parameter
The parameter to accept. |
Returns
|
TResult
A value of the return type. |