Click or drag to resize
IParserT Interface
Typed interface for parsers which return some data structure.

Namespace: Bio.IO
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public interface IParser<out T> : IParser

Type Parameters

T
Returning type

The IParserT type exposes the following members.

Properties
  NameDescription
Public propertyDescription
Gets the description of the parser being implemented. This is intended to give the developer some information of the parser.
(Inherited from IParser.)
Public propertyName
Gets the name of the parser being implemented. This is intended to give the developer name of the parser.
(Inherited from IParser.)
Public propertySupportedFileTypes
Gets the file extensions that the parser supports. If multiple extensions are supported then this property will return a string containing all extensions with a ',' delimited.
(Inherited from IParser.)
Top
Methods
  NameDescription
Public methodParse
Parses a list of biological sequence texts from a given stream.
Public methodParseOne
Parse a single entity from the given stream.
Top
See Also