Delegate TextBuilder
A delegate type for methods that build markup text from various textual inputs and the time. Used in StampWithTextBuilder(TextBuilder)
Namespace: Sig.SignAPI.Stamp
Assembly: SigSignAPI.dll
Syntax
public delegate string TextBuilder(string signedBy, string signer, string reasonForSigningIs, string reason, string locationAndDateIs, string location, DateTime dateTime);
Parameters
Type | Name | Description |
---|---|---|
System.String | signedBy | A text like "Signed by: " |
System.String | signer | The name of the signer. |
System.String | reasonForSigningIs | A text like "Reason for signing: " |
System.String | reason | The reason. |
System.String | locationAndDateIs | A text like "Location: " |
System.String | location | The location. |
System.DateTime | dateTime | The time. |
Returns
Type | Description |
---|---|
System.String | Text. Depends on the implementation. |