You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wouldn't say its as feature full as the one you provided https://github.com/peteroupc/CBOR but it should be included so that people who aren't able or allowed to use external libraries will know that they can use CBOR in .NET now :).
The text was updated successfully, but these errors were encountered:
I wouldn't say that is an implementation. It's low-level code that could be used by an implementation.
For example, to write an array of values using that, you need to WriteStartArray() and then write the internals and then WriteEndArray(). So a user of this library needs to understand the low level workings of CBOR.
System.Formats.Cbor is a full implementation of the CBOR format, and does not constrain itself to COSE applications. It only surfaces low-level reader and writer types, but it should be possible to implement a type serializer on top of it: here's one that I wrote in F#.
https://docs.microsoft.com/en-us/dotnet/api/system.formats.cbor?view=dotnet-plat-ext-6.0
I wouldn't say its as feature full as the one you provided https://github.com/peteroupc/CBOR but it should be included so that people who aren't able or allowed to use external libraries will know that they can use CBOR in .NET now :).
The text was updated successfully, but these errors were encountered: