Class EbicsProtocolEntries

Namespace
Subsembly.EBICS
Assembly
Subsembly.EBICS.Core.dll

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

aTextReader TextReader

A 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

sOrderID string

Returns

EbicsProtocolEntry[]

A possibly empty array with the selected protocoll entries. The return value is never null.

Exceptions

ArgumentNullException

The parameter sOrderID was null.

Write(TextWriter)

Writes all entries of this EBICS protocol.

public void Write(TextWriter aTextWriter)

Parameters

aTextWriter TextWriter

The destination to write the entries to. This must not be null.