TlvTagBuilderReplaceChildTag Method
|
Replace child TLV tag with given TLV tag. Reference equality is used when searching the tag to be replaced.
Namespace:
Guardtime.KSI.Parser
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic void ReplaceChildTag(
ITlvTag oldTag,
ITlvTag newTag
)
Public Sub ReplaceChildTag (
oldTag As ITlvTag,
newTag As ITlvTag
)
public:
void ReplaceChildTag(
ITlvTag^ oldTag,
ITlvTag^ newTag
)
member ReplaceChildTag :
oldTag : ITlvTag *
newTag : ITlvTag -> unit
Parameters
- oldTag
- Type: Guardtime.KSI.ParserITlvTag
TLV tag to be replaced - newTag
- Type: Guardtime.KSI.ParserITlvTag
TLV tag to replace the oldTag. If multiple oldTag occurarences exist then only the first one is replaced.
See Also