timyhac
timyhac
**Is your feature request related to a problem? Please describe.** I need to dynamically change the data that is being viewed in this component. I would like the src property...
This is a breaking change since it requires IPlcMapper implementations to implement a new method. As such it will need to go into a 2.x release
Mappers have historically been used to map between CLR objects and the byte array returned by libplctag core. Since this was introduced, a number of features have been developed that...
The way libplctag.NativeImport packages the runtimes is not standard. NativeImport extracts the appropriate native library to disk at runtime. It was originally done this way to facilitate compliance with libplctag's...
The enums in libplctag.NativeImport use plural form instead of singular form, which goes against [naming conventions](https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces#naming-enumerations). - `DEBUG_LEVELS` -> `DEBUG_LEVEL` - `STATUS_CODES` -> `STATUS_CODE` - `EVENT_CODES` -> `EVENT_CODE` Most of...
The core library API for `plc_tag_get_raw_bytes` allows the caller to provide their own buffer for the method to fill. Expose an overload of `GetBuffer()` that mirrors this behaviour. This will...
Fulfills #299 by providing an overload for GetBuffer that accepts a byte array.