Interface IBuilder<T>
- Namespace
- Tudormobile.AlphaVantage
- Assembly
- Tudormobile.AlphaVantageAPI.dll
Defines a mechanism for constructing an instance of type T.
public interface IBuilder<T>
Type Parameters
TThe type of object to be constructed by the builder.
Methods
Build()
Creates and returns an instance of type T based on the current configuration.
T Build()
Returns
- T
An instance of type
Trepresenting the constructed object.