Interface IItemModifier
Provides methods that Colectica Workflow item filters can use to remove content from an item that is being processed by the Colectica Workflow server.
Namespace: Algenta.Colectica.Model.Workflow
Assembly: Algenta.Colectica.Model.dll
Syntax
public interface IItemModifier
Properties
Description
Gets a description of the filter.
Declaration
string Description { get; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets the name of the filter.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
ModifyItem(IVersionable)
Modifies the item according to appropriate business rules.
Declaration
bool ModifyItem(IVersionable item)
Parameters
| Type | Name | Description |
|---|---|---|
| IVersionable | item | The item to be modified. |
Returns
| Type | Description |
|---|---|
| bool |
|
SupportsItem(Guid)
Determines whether this filter is capable of filtering information from an item of the specified type.
Declaration
bool SupportsItem(Guid itemType)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | itemType | The type of item to determine if this filter is capable of filtering. |
Returns
| Type | Description |
|---|---|
| bool |
|