Interface IUserCustomActionCollection
Public interface to define a collection of UserCustomAction objects
Assembly: PnP.Core.dll
Syntax
public interface IUserCustomActionCollection : IDataModelCollection<IUserCustomAction>, IDataModelParent, IDataModelWithContext, IRequestableCollection, IDataModelCollectionLoad<IUserCustomAction>, IDataModelCollectionDeleteByGuidId, ISupportModules<IUserCustomActionCollection>
Methods
Add a new User Custom Action with the specified options
Declaration
IUserCustomAction Add(AddUserCustomActionOptions options)
Parameters
Returns
Add a new User Custom Action with the specified options
Declaration
Task<IUserCustomAction> AddAsync(AddUserCustomActionOptions options)
Parameters
Returns
Add a new User Custom Action with the specified options in the current batch
Declaration
IUserCustomAction AddBatch(AddUserCustomActionOptions options)
Parameters
Returns
Add a new User Custom Action with the specified options in the specified batch instance
Declaration
IUserCustomAction AddBatch(Batch batch, AddUserCustomActionOptions options)
Parameters
Returns
Add a new User Custom Action with the specified options in the current batch
Declaration
Task<IUserCustomAction> AddBatchAsync(AddUserCustomActionOptions options)
Parameters
Returns
Add a new User Custom Action with the specified options in the specified batch instance
Declaration
Task<IUserCustomAction> AddBatchAsync(Batch batch, AddUserCustomActionOptions options)
Parameters
Returns
Extension Methods