Opc.Ua.XmlDecoder.ReadDiagnosticInfo C# (CSharp) Method

ReadDiagnosticInfo() public method

Reads an DiagnosticInfo from the stream.
public ReadDiagnosticInfo ( string fieldName ) : DiagnosticInfo
fieldName string
return DiagnosticInfo
        public DiagnosticInfo ReadDiagnosticInfo(string fieldName)
        {
            DiagnosticInfo value = null;

            if (BeginField(fieldName, true))
            {                
                PushNamespace(Namespaces.OpcUaXsd);
                value = ReadDiagnosticInfo();
                PopNamespace();
                
                EndField(fieldName);
                return value;
            }

            return value;
        }
        

Same methods

XmlDecoder::ReadDiagnosticInfo ( ) : DiagnosticInfo