Table of Contents

Interface IInfoProvider

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Interface describing common info object provider.

public interface IInfoProvider : ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider
Inherited Members
Extension Methods

Methods

GetInfoByFullName(string)

Gets the info by given full name.

BaseInfo GetInfoByFullName(string fullName)

Parameters

fullName string

Full name of the object

Returns

BaseInfo

GetInfoByGuid(Guid)

Gets the info by given GUID.

BaseInfo GetInfoByGuid(Guid guid)

Parameters

guid Guid

GUID of the object

Returns

BaseInfo

GetInfoById(int)

Gets the info by given id.

BaseInfo GetInfoById(int id)

Parameters

id int

ID of the object

Returns

BaseInfo

GetInfoByName(string)

Gets the info by given code name.

BaseInfo GetInfoByName(string name)

Parameters

name string

Name of the object

Returns

BaseInfo

GetInfosByIds(IEnumerable<int>)

Gets the infos by ids collection.

SafeDictionary<int, BaseInfo> GetInfosByIds(IEnumerable<int> ids)

Parameters

ids IEnumerable<int>

IDs of the objects

Returns

SafeDictionary<int, BaseInfo>