Interface IInfoByNameProvider<TInfo>
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Declares a member for retrieval of info objects by their code name.
Use this interface when composing a custom provider interface. A custom provider interface can be associated with the provider using the ProviderInterfaceAttribute.
The system registers corresponding TInfo
provider implementation
under the custom interface into the IoC container as part of the RegisterObjectType(string, ObjectTypeInfo, Type, bool, bool) method.
Unlike with IInfoProvider<TInfo> the system does not register the provider implementation under this interface (i.e. this interface is designed to be a part of other interfaces).
public interface IInfoByNameProvider<TInfo> where TInfo : AbstractInfoBase<TInfo>, new()
Type Parameters
TInfo
Type of info object managed by the provider.
- Extension Methods
Methods
Get(string)
Gets an instance of info object based on its code name.
TInfo Get(string name)
Parameters
name
stringCode name of the info object to look for.
Returns
- TInfo
Returns an instance of
TInfo
corresponding toname
or null.
Exceptions
- NotSupportedException
Thrown when
TInfo
does not have the code name column.
GetAsync(string, CancellationToken?)
Asynchronously gets an instance of info object based on its code name.
Task<TInfo> GetAsync(string name, CancellationToken? cancellationToken = null)
Parameters
name
stringCode name of the info object to look for.
cancellationToken
CancellationToken?The cancellation instruction.
Returns
- Task<TInfo>
Returns a task returning either an instance of
TInfo
corresponding toname
or null.
Exceptions
- NotSupportedException
Thrown when
TInfo
does not have the code name column.