ads-client | Beckhoff TwinCAT ADS client library for Node.js
    Preparing search index...

    Interface WriteValueResult<T>

    Return value of writeValue() and writeValueBySymbol()

    interface WriteValueResult<T = any> {
        dataType: AdsDataType;
        rawValue: Buffer;
        symbol: AdsSymbol;
        value: T;
    }

    Type Parameters

    • T = any
    Index

    Properties

    dataType: AdsDataType

    Data type of the target symbol

    rawValue: Buffer

    Raw value as Buffer

    symbol: AdsSymbol

    Symbol information of the target symbol

    value: T

    Value of the symbol as converted Javascript object