Click or drag to resize
ISiteInfoProvider Interface
Declares members for SiteInfo management.

Namespace: CMS.SiteProvider
Assembly: CMS.SiteProvider (in CMS.SiteProvider.dll) Version: 13.0.131
Syntax
C#
public interface ISiteInfoProvider : IInfoProvider<SiteInfo>, 
	IInfoByIdProvider<SiteInfo>, IInfoByGuidProvider<SiteInfo>, IInfoByNameProvider<SiteInfo>

The ISiteInfoProvider type exposes the following members.

Methods
  NameDescription
Public methodDelete
Deletes the info object from the underlying data store.
(Inherited from IInfoProvider<TInfo>.)
Public methodGet()
Gets the object query for TInfo retrieval.
(Inherited from IInfoProvider<TInfo>.)
Public methodGet(Guid)
Gets an instance of info object based on its GUID.
(Inherited from IInfoByGuidProvider<TInfo>.)
Public methodGet(Int32)
Gets an instance of info object based on its ID.
(Inherited from IInfoByIdProvider<TInfo>.)
Public methodGet(String)
Gets an instance of info object based on its code name.
(Inherited from IInfoByNameProvider<TInfo>.)
Public methodGetAsync(Guid, Nullable<CancellationToken>)
Asynchronously gets an instance of info object based on its GUID.
(Inherited from IInfoByGuidProvider<TInfo>.)
Public methodGetAsync(Int32, Nullable<CancellationToken>)
Asynchronously gets an instance of info object based on its ID.
(Inherited from IInfoByIdProvider<TInfo>.)
Public methodGetAsync(String, Nullable<CancellationToken>)
Asynchronously gets an instance of info object based on its code name.
(Inherited from IInfoByNameProvider<TInfo>.)
Public methodSet
Inserts or updates the info object in the underlying data store.
(Inherited from IInfoProvider<TInfo>.)
Top
See Also