Class EbicsProtocolEntries
Collection of EbicsProtocolEntry objects.
public class EbicsProtocolEntries : Collection<EbicsProtocolEntry>, IList<EbicsProtocolEntry>, ICollection<EbicsProtocolEntry>, IReadOnlyList<EbicsProtocolEntry>, IReadOnlyCollection<EbicsProtocolEntry>, IEnumerable<EbicsProtocolEntry>, IList, ICollection, IEnumerable
- Inheritance
-
EbicsProtocolEntries
- Implements
- Inherited Members
Methods
Read(TextReader)
Reads an EBICS protocol.
public void Read(TextReader aTextReader)
Parameters
aTextReaderTextReaderA TextReader that provides the EBICS protocol text. Use the StringReader class in order to read from a string. This must not be
null.
Select(string)
Returns an array with all protocol entries that have the given OrderID.
public EbicsProtocolEntry[] Select(string sOrderID)
Parameters
sOrderIDstring
Returns
- EbicsProtocolEntry[]
A possibly empty array with the selected protocoll entries. The return value is never
null.
Exceptions
- ArgumentNullException
The parameter
sOrderIDwasnull.
Write(TextWriter)
Writes all entries of this EBICS protocol.
public void Write(TextWriter aTextWriter)
Parameters
aTextWriterTextWriterThe destination to write the entries to. This must not be
null.