Method UseTSA
UseTSA(String)
Whether trusted timestamping shall be used with the TSA address. When no TSA address is given, a default TSA is used.
Declaration
public Behaviour UseTSA(string address = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | address |
Returns
Type | Description |
---|---|
Behaviour | The changed behaviour. |
Examples
Uses the StepOver TSA
Behaviour behaviour = Behaviour.GetDefault()
.UseTSA("http://stepoverinfo.net:88/tsa/");
The same
Behaviour behaviour = Behaviour.GetDefault().UseTSA();