TlvTagBuilder Constructor (UInt32, Boolean, Boolean, ITlvTag)
|
Create new TLV tag builder.
Namespace:
Guardtime.KSI.Parser
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic TlvTagBuilder(
uint type,
bool nonCritical,
bool forward,
ITlvTag[] childTags = null
)
Public Sub New (
type As UInteger,
nonCritical As Boolean,
forward As Boolean,
Optional childTags As ITlvTag() = Nothing
)
public:
TlvTagBuilder(
unsigned int type,
bool nonCritical,
bool forward,
array<ITlvTag^>^ childTags = nullptr
)
new :
type : uint32 *
nonCritical : bool *
forward : bool *
?childTags : ITlvTag[]
(* Defaults:
let _childTags = defaultArg childTags null
*)
-> TlvTagBuilder
Parameters
- type
- Type: SystemUInt32
TLV type - nonCritical
- Type: SystemBoolean
Is TLV element non critical - forward
- Type: SystemBoolean
Is TLV element forwarded - childTags (Optional)
- Type: Guardtime.KSI.ParserITlvTag
child TLV element list
See Also