Interface IMapperFactory
A factory used to convert attachment information into a metadata mapper using their contents.
Namespace: CrashCABN.Metadata
Assembly: CrashCABN.Metadata.dll
Syntax
public interface IMapperFactory
Methods
View SourceCreate(AttachmentInfo[])
Creates a metdata mapper for the given attachments, using the default processor to load their contents.
Declaration
Mapper Create(params AttachmentInfo[] attachments)
Parameters
| Type | Name | Description |
|---|---|---|
| AttachmentInfo[] | attachments | The attachments. |
Returns
| Type | Description |
|---|---|
| Mapper | A Mapper instance. |
Create(IAttachmentContainer)
Creates a metdata mapper for the given attachment container.
Declaration
Mapper Create(IAttachmentContainer attachments)
Parameters
| Type | Name | Description |
|---|---|---|
| IAttachmentContainer | attachments | The attachment container. |
Returns
| Type | Description |
|---|---|
| Mapper | A Mapper instance. |