msgpack-cli icon indicating copy to clipboard operation
msgpack-cli copied to clipboard

MessagePack implementation for Common Language Infrastructure / msgpack.org[C#]

Results 85 msgpack-cli issues
Sort by recently updated
recently updated
newest added

Hi. I'm switching our project from using pregenerated serializers to PrepareType. This is my enum: ``` public enum StatusType : int { OK = 0, Exception = 1, ... }...

bug

I want to obfuscate the serialization class for Example class test -> DSDISUKDHSD { int a; -> int FLKDJFDLIFJ:; string b; -> string aDSAJDSLDKS; } but Msgpack uses alphabet sorting...

enhancement

hi, somes problem when you use serializer from context.GetSerializer ``` public class SimpleItem { public int Id; public SimpleItem() { } } var item = new SimpleItem(); var stream =...

enhancement

Why everything is based on objects and classes in this implementation? Or the documentation is misleading? In the C/C++ version I can instantiate a serializer and start calling methods like...

enhancement

Hey there, First of all, thanks for this awesome library. I'm importing the binary `unity` (not `unity-full`, version `0.9.0-beta1`) and building for the web and here's the error that I...

question

Hi, I have read, that private constructors are not available because of speed (reflection etc.). In my case, I have private constructors and factory, that can create any available object....

I'm getting a hard-to-reproduce problem with a serializer. The type looks like this: ``` C# namespace eL_libCommon.Container.GridLayouts { public enum HashAlgorithm { MD5 } public enum CompressionAlgorithm { GZip }...

need-more-info

Hi yfakariya, is it possible to get info by msgpack which fields/properties of a class would be serialized (and which order)? Kind of a dry run or statistical output, would...

enhancement

We use msgpack for store our classes to binary content (.NET 4.5, IIS 7.x). After some operations, error occured: Unable to cast object of type 'MsgPack.Serialization.EmittingSerializers.Generated.AutoGRAPHCharts_ModIndSettingsSerializer405' to type 'MsgPack.Serialization.MessagePackSerializer`1[AutoGRAPHCharts.ModIndSettings]'. ![Image](http://i.tk-chel.ru/denisio/201607/20160714_1049_25.png)...

need-more-info

Hi, we are using msgpack for communication between server (.NET 4.5.2) and client (.NET 2.0 subset - Unity3D). Everything works fine except this situation: If we define an object with...

need-more-info