Ankunft, etc,

This commit is contained in:
2026-03-09 13:24:19 +01:00
parent 1eac4a3e50
commit 2410e4ff4e
5 changed files with 698 additions and 408 deletions

View File

@@ -150,6 +150,20 @@ Public Class cGetMsgType
Return False
End Function
Shared Function isNCTS_SumABekanntgabeMassnahme(doc As XmlDocument, ByRef version As String) As Boolean
If doc.HasChildNodes Then
If doc.GetElementsByTagName("SumABekanntgabeMassnahme").Count > 0 Then
If doc.GetElementsByTagName("Version").Count > 0 Then
version = doc.GetElementsByTagName("Version")(0).InnerText
End If
Return True
End If
End If
Return False
End Function
Shared Function isAES_DEXPSD(doc As XmlDocument) As Boolean
If doc.HasChildNodes Then