Opc.Ua.JsonDecoder.ReadGuid C# (CSharp) Метод

ReadGuid() публичный Метод

Reads a GUID from the stream.
public ReadGuid ( string fieldName ) : Uuid
fieldName string
Результат Uuid
        public Uuid ReadGuid(string fieldName)
        {
            object token = null;

            if (!ReadField(fieldName, out token))
            {
                return Uuid.Empty;
            }

            var value = token as string;

            if (value == null)
            {
                return Uuid.Empty;
            }

            return new Uuid(value);
        }