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

WriteInt32() public method

Writes an int to the stream.
public WriteInt32 ( string fieldName, int value ) : void
fieldName string
value int
return void
        public void WriteInt32(string fieldName, int value)
        {
            WriteSimpleField(fieldName, value.ToString(CultureInfo.InvariantCulture), false);
        }