Table of Contents

Interface IBizFormRoleInfoProvider

Namespace
CMS.OnlineForms
Assembly
CMS.OnlineForms.dll

Declares members for BizFormRoleInfo management.

[Obsolete("Use CMS.DataEngine.IInfoProvider<BizFormRoleInfo> instead. Use CMS.DataEngine.InfoProviderExtensions for additional methods for individual objects retrieval. To get an instance of the interface's implementation use dependency injection or access the instance directly via the CMS.DataEngine.Provider<BizFormRoleInfo>.Instance property.")]
[ObsoleteSince(28, 4)]
public interface IBizFormRoleInfoProvider : IInfoProvider<BizFormRoleInfo>
Inherited Members
Extension Methods

Methods

Add(int, int)

Creates BizFormRoleInfo binding.

[Obsolete("Create a new BizFormRoleInfo with specified RoleID and FormID and use Set(BizFormRoleInfo) instead.")]
[ObsoleteSince(28, 4)]
void Add(int roleId, int formId)

Parameters

roleId int

Role ID.

formId int

Form ID.

Get(int, int)

Gets an instance of the BizFormRoleInfo binding structure.

[Obsolete("Use Get() and parametrized ObjectQuery to get the BizFormRoleInfo with specified RoleID and FormID.")]
[ObsoleteSince(28, 4)]
BizFormRoleInfo Get(int roleId, int formId)

Parameters

roleId int

Role ID.

formId int

Form ID.

Returns

BizFormRoleInfo

Returns an instance of BizFormRoleInfo corresponding to given identifiers or null.

GetAsync(int, int, CancellationToken?)

Asynchronously gets an instance of the BizFormRoleInfo binding structure.

[Obsolete("Use Get() and parametrized ObjectQuery to get the BizFormRoleInfo with specified RoleID and FormID.")]
[ObsoleteSince(28, 4)]
Task<BizFormRoleInfo> GetAsync(int roleId, int formId, CancellationToken? cancellationToken = null)

Parameters

roleId int

Role ID.

formId int

Form ID.

cancellationToken CancellationToken?

The cancellation instruction.

Returns

Task<BizFormRoleInfo>

Returns a task returning either an instance of BizFormRoleInfo corresponding to given identifiers or null.

Remove(int, int)

Deletes BizFormRoleInfo binding.

[Obsolete("Get the BizFormRoleInfo with specified RoleID and FormID using Get() and delete the binding using Delete(BizFormRoleInfo).")]
[ObsoleteSince(28, 4)]
void Remove(int roleId, int formId)

Parameters

roleId int

Role ID.

formId int

Form ID.