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
-
objectAbstractInfoProvider<TInfo, TProvider, ObjectQuery<TInfo>>AbstractInfoProvider<TInfo, TProvider>
- Implements
-
IInfoValidator<TInfo>IInfoProvider<TInfo>IInfoByIdProvider<TInfo>IInfoByGuidProvider<TInfo>IInfoByNameProvider<TInfo>IBulkInfoProvider<TInfo>
- 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
ObjectTypeInfoObject 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
boolIndicates 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
TInfoInfo 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
TInfoInfo 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
GuidGUID of the info object to look for.
Returns
- TInfo
Returns an instance of
TInfo
corresponding toguid
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
intID of the info object to look for.
Returns
- TInfo
Returns an instance of
TInfo
corresponding toid
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
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(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
GuidGUID 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 toguid
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
intID 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 toid
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
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.
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
TInfoInfo 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
TInfoInfo 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.