[]
Represents information about a file for a particular platform.
public class FileSpecification.FileInfo
Gets or sets the EmbeddedFileStream associated with this file specification.
public EmbeddedFileStream EmbeddedFileStream { get; set; }
Gets or sets the file specification string of the form described in PDF Specification Section 3.10.1, “File Specification Strings”.
public string FileName { get; set; }
Gets the FileSpecification object owning this object.
public FileSpecification Owner { get; }
Gets the collection of related files, see PDF Specification for details.
public FileSpecification.RelatedFileCollection RelatedFiles { get; }
Gets a System.IO.Stream containing the content of this FileSpecification.FileInfo, or null if the file specification is empty.
Important: this System.IO.Stream must be disposed after use.
public Stream GetStream()
A System.IO.Stream with the content of this FileSpecification.FileInfo, or null if it is empty. If not null, the stream must be disposed after use!