HeaderParam Event
Fires once for each JOSE header parameter.
Syntax
type THeaderParamEvent = procedure ( Sender: TObject; const Name: String; const Value: String; DataType: Integer ) of Object;
property OnHeaderParam: THeaderParamEvent read FOnHeaderParam write FOnHeaderParam;
Remarks
When Verify or Parse is called this event will fire once for each JOSE header parameter.
Name is the name of the parameter.
Value is the value of the parameter.
DataType specifies the JSON data type of the value. Possible values are:
- 0 (Object)
- 1 (Array)
- 2 (String)
- 3 (Number)
- 4 (Bool)
- 5 (Null)