Table of Contents

Class AbstractInfoProvider<TInfo, TProvider>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Abstract info class provider.

public abstract class AbstractInfoProvider<TInfo, TProvider> : AbstractInfoProvider<TInfo, TProvider, ObjectQuery<TInfo>>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<TInfo>, IInfoProvider<TInfo>, IInfoByIdProvider<TInfo>, IInfoByGuidProvider<TInfo>, IInfoByNameProvider<TInfo>, IBulkInfoProvider<TInfo> where TInfo : AbstractInfoBase<TInfo>, new() where TProvider : AbstractInfoProvider<TInfo, TProvider>

Type Parameters

TInfo
TProvider
Inheritance
object
AbstractInfoProvider<TInfo, TProvider, ObjectQuery<TInfo>>
AbstractInfoProvider<TInfo, TProvider>
Implements
Derived
Inherited Members
Extension Methods

Constructors

AbstractInfoProvider()

Initializes a new instance of the AbstractInfoProvider<TInfo, TProvider, TQuery> class.

protected AbstractInfoProvider()

Remarks

Calling this constructor is equivalent to calling AbstractInfoProvider(bool) while specifying true for the initialize parameter.

AbstractInfoProvider(ObjectTypeInfo)

Initializes a new instance of the AbstractInfoProvider<TInfo, TProvider, TQuery> class using the typeInfo provided.

protected AbstractInfoProvider(ObjectTypeInfo typeInfo)

Parameters

typeInfo ObjectTypeInfo

Object type information.

Remarks

Associate the InfoCacheAttribute with TInfo to configure the info cache. If not configured, default settings with UseWeakReferences set to true are used.

AbstractInfoProvider(bool)

Initializes a new instance of the AbstractInfoProvider<TInfo, TProvider, TQuery> class.

protected AbstractInfoProvider(bool initialize)

Parameters

initialize bool

Indicates if provider together with hashtables should be initialized.

Remarks

Associate the InfoCacheAttribute with TInfo to configure the info cache. If not configured, default settings with UseWeakReferences set to true are used.

Methods

Delete(TInfo)

Deletes the info object from the underlying data store.

public virtual void Delete(TInfo info)

Parameters

info TInfo

Info object to be deleted.

Exceptions

ArgumentNullException

Thrown when info is null.

DeleteAsync(TInfo, CancellationToken?)

Asynchronously deletes the info object from the underlying data store.

public virtual Task DeleteAsync(TInfo info, CancellationToken? cancellationToken = null)

Parameters

info TInfo

Info object to be deleted.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task

Remarks

For compatibility reasons, the base implementation calls the synchronous Delete(TInfo).

For info objects without an explicitly generated provider, the system-provided implementation overrides this method and invokes the DeleteInfoAsync(TInfo, CancellationToken) base method. Custom code with explicit provider implementation can opt in to the asynchronous execution by overriding this member.

Exceptions

ArgumentNullException

Thrown when info is null.

Get()

Gets the object query for TInfo retrieval.

public virtual ObjectQuery<TInfo> Get()

Returns

ObjectQuery<TInfo>

Returns ObjectQuery<TObject> for TInfo retrieval.

Get(Guid)

Gets an instance of info object based on its GUID.

public virtual TInfo Get(Guid guid)

Parameters

guid Guid

GUID of the info object to look for.

Returns

TInfo

Returns an instance of TInfo corresponding to guid or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the GUID column.

Get(int)

Gets an instance of info object based on its ID.

public virtual 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.

Get(string)

Gets an instance of info object based on its code name.

public virtual TInfo Get(string name)

Parameters

name string

Code name of the info object to look for.

Returns

TInfo

Returns an instance of TInfo corresponding to name or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the code name column.

GetAsync(Guid, CancellationToken?)

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

public virtual Task<TInfo> GetAsync(Guid guid, CancellationToken? cancellationToken = null)

Parameters

guid Guid

GUID 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 guid or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the GUID column.

GetAsync(int, CancellationToken?)

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

public virtual 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.

GetAsync(string, CancellationToken?)

Asynchronously gets an instance of info object based on its code name.

public virtual Task<TInfo> GetAsync(string name, CancellationToken? cancellationToken = null)

Parameters

name string

Code 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 to name or null.

Exceptions

NotSupportedException

Thrown when TInfo does not have the code name column.

GetObjectQueryInternal()

Gets the object query for the provider

protected override ObjectQuery<TInfo> GetObjectQueryInternal()

Returns

ObjectQuery<TInfo>

Set(TInfo)

Inserts or updates the info object in the underlying data store.

public virtual void Set(TInfo info)

Parameters

info TInfo

Info object to be inserted or updated.

Exceptions

ArgumentNullException

Thrown when info is null.

SetAsync(TInfo, CancellationToken?)

Asynchronously inserts or updates the info object in the underlying data store.

public virtual Task SetAsync(TInfo info, CancellationToken? cancellationToken = null)

Parameters

info TInfo

Info object to be inserted or updated.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task

Remarks

For compatibility reasons, the base implementation calls the synchronous Set(TInfo).

For info objects without an explicitly generated provider, the system-provided implementation overrides this method and invokes the SetInfoAsync(TInfo, CancellationToken) base method. Custom code with explicit provider implementation can opt in to the asynchronous execution by overriding this member.

Exceptions

ArgumentNullException

Thrown when info is null.