Opc.Ua.JsonEncoder.WriteByte C# (CSharp) Method

WriteByte() public method

Writes a byte to the stream.
public WriteByte ( string fieldName, byte value ) : void
fieldName string
value byte
return void
        public void WriteByte(string fieldName, byte value)
        {
            WriteSimpleField(fieldName, value.ToString(CultureInfo.InvariantCulture), false);
        }