RawTag Constructor (UInt32, Boolean, Boolean, Byte, NullableBoolean)
|
Create new octet string TLV element from data
Namespace:
Guardtime.KSI.Parser
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic RawTag(
uint type,
bool nonCritical,
bool forward,
byte[] value,
Nullable<bool> isReadAsTlv16 = null
)
Public Sub New (
type As UInteger,
nonCritical As Boolean,
forward As Boolean,
value As Byte(),
Optional isReadAsTlv16 As Nullable(Of Boolean) = Nothing
)
public:
RawTag(
unsigned int type,
bool nonCritical,
bool forward,
array<unsigned char>^ value,
Nullable<bool> isReadAsTlv16 = nullptr
)
new :
type : uint32 *
nonCritical : bool *
forward : bool *
value : byte[] *
?isReadAsTlv16 : Nullable<bool>
(* Defaults:
let _isReadAsTlv16 = defaultArg isReadAsTlv16 null
*)
-> RawTag
Parameters
- type
- Type: SystemUInt32
TLV element type - nonCritical
- Type: SystemBoolean
Is TLV element non critical - forward
- Type: SystemBoolean
Is TLV element forwarded - value
- Type: SystemByte
TLV element byte array value - isReadAsTlv16 (Optional)
- Type: SystemNullableBoolean
Indicates that TLV element was created using tlv16 encoding
See Also