Interface IFinDocket
Abstract callback interface that provide online banking progress information for the user interface.
Namespace: Subsembly.FinTS.Online
Assembly: Subsembly.FinTS.Core.dll
Syntax
public interface IFinDocket
Remarks
The methods in this interface might be called from a background worker thread. Therefore all implementations must delegate UI operation to the main UI thread, when necessary.
Methods
Append(String, Int32, String)
Appends an item at the end of the docket.
Declaration
void Append(string sSegmentType, int nStatusCode, string sMessageText)
Parameters
Type | Name | Description |
---|---|---|
System.String | sSegmentType | Optional segment type that is the source of this message.
May be |
System.Int32 | nStatusCode | Optional FinTS status Code associated with this message.
If |
System.String | sMessageText | Text message to be logged. Must not be |