You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OPCUA spec states that SubCode part of StatusCode are bits 16 to 27 which should result in mask 0x0FFF0000.
Current SubCode property implementation uses mask 0x0FFF000 (missing zero at the end) producing invalid results.
StatusCode.cs - lines 218, 219
The text was updated successfully, but these errors were encountered:
OPCUA spec states that SubCode part of StatusCode are bits 16 to 27 which should result in mask 0x0FFF0000.
Current SubCode property implementation uses mask 0x0FFF000 (missing zero at the end) producing invalid results.
StatusCode.cs - lines 218, 219
The text was updated successfully, but these errors were encountered: