Gurux.DLMS.GXDLMSBuilder.SetData C# (CSharp) Method

SetData() public static method

Convert object to DLMS bytes.
public static SetData ( GXByteBuffer buff, DataType type, object value ) : void
buff GXByteBuffer ///Byte buffer where data is write. ///
type DataType
value object /// Added Value. ///
return void
        public static void SetData(GXByteBuffer buff, DataType type, object value)
        {
            GXCommon.SetData(null, buff, type, value);
        }
    }