Opc.Ua.JsonDecoder.JsonDecoder C# (CSharp) Method

JsonDecoder() public method

public JsonDecoder ( System systemType, JsonTextReader reader, ServiceMessageContext context ) : System
systemType System
reader Newtonsoft.Json.JsonTextReader
context ServiceMessageContext
return System
        public JsonDecoder(System.Type systemType, JsonTextReader reader, ServiceMessageContext context)
        {
            Initialize();

            m_context = context;
            m_reader = reader;
            m_root = ReadObject();
            m_stack = new Stack<object>();
            m_stack.Push(m_root);
        }

Same methods

JsonDecoder::JsonDecoder ( string json, ServiceMessageContext context ) : System