Table of Contents

Interface IInfoByIdProvider<TInfo>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Declares a member for retrieval of info objects by their ID.

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 IInfoByIdProvider<TInfo> where TInfo : AbstractInfoBase<TInfo>, new()

Type Parameters

TInfo

Type of info object managed by the provider.

Extension Methods

Methods

Get(int)

Gets an instance of info object based on its ID.

TInfo Get(int id)

Parameters

id int

ID of the info object to look for.

Returns

TInfo

Returns an instance of TInfo corresponding to id or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the ID column.

GetAsync(int, CancellationToken?)

Asynchronously gets an instance of info object based on its ID.

Task<TInfo> GetAsync(int id, CancellationToken? cancellationToken = null)

Parameters

id int

ID 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 to id or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the ID column.

See Also