kCura.WinEDDS.Exporters.ObjectExportInfo
namespace kCura.WinEDDS.Exporters
{
public class ObjectExportInfo
{
public int ArtifactID { get; set; }
public int FileID { get; set; }
public bool HasCountedNative { get; set; }
public bool HasCountedTextFile { get; set; }
public bool HasFullText { get; set; }
public string IdentifierValue { get; set; }
public ArrayList Images { get; set; }
public object[] Metadata { get; set; }
public object Native { get; set; }
public string NativeExtension { get; set; }
public string NativeFileGuid { get; set; }
public string NativeSourceLocation { get; set; }
public string NativeTempLocation { get; set; }
public string OriginalFileName { get; set; }
public string PdfFileGuid { get; set; }
public string PdfSourceLocation { get; set; }
public string PdfDestinationLocation { get; set; }
public string ProductionBeginBates { get; set; }
public long TotalFileSize { get; set; }
public long TotalNumberOfFiles { get; set; }
public string DestinationVolume { get; set; }
public string Filename { get; set; }
public bool DocumentError { get; set; }
public long LongTextLength { get; set; }
public string ProductionBeginBatesFileName { get; }
public long NativeCount { get; }
public bool HasPdf { get; }
public long ImageCount { get; }
public int DocCount { get; }
public ObjectExportInfo();
public string AppendOriginalFileName(string value);
public StringBuilder AppendOriginalFileName(StringBuilder value);
public virtual string NativeFileName(bool appendToOriginal);
public virtual string PdfFileName(string name, bool appendToOriginal);
public string FullTextFileName(bool nameFilesAfterIdentifier, bool tryProductionBegBates);
public virtual string FullTextFileName(bool nameFilesAfterIdentifier, bool tryProductionBegBates, bool appendOriginalFilename);
}
}