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