Giter Site home page Giter Site logo

Comments (4)

deniszykov avatar deniszykov commented on August 25, 2024 1

Hi @sadradelir, if you want to ignore some field during serialization you could:
a) make them private|protected|internal
b) remove DataContractAttribute from class and add IgnoreDataMemberAttribute on ignored fields
c) add DataContractAttribute and mark with DataMemberAttribute only required fields, non-marked will be ignored.

from msgpack-unity3d.

sadradelir avatar sadradelir commented on August 25, 2024 1

Hi @deniszykov and thanks for your fast replay, But I mean field names not entire ignore of field, for example i pack this class :
{
public int test1 = 10 ;
public int test2 = 20 ;
}
and I got this :
"StringPrefix"test1"IntPrefix"10"StringPrefix"test2"IntPrefix"20
but with java library and msgPack-Cli ( standard version mentioned in msgpack.org for c# ) we got this ( with field name ignorance ) :
"IntPrefix"10"IntPrefix"20

from msgpack-unity3d.

deniszykov avatar deniszykov commented on August 25, 2024 1

Do you mean storing only objects field values? At the moment there is no such feature. You can implement your own serializer of such objects and register it in SerializationContext.ObjectSerializerFactory.

var context = new SerializationContext();
context.ObjectSerializerFactory = (t => 
    IsSpecialType(t) ? 
         new SpecialTypeSerializer(t) : 
         new ObjectSerializer(context, t)
);

from msgpack-unity3d.

sadradelir avatar sadradelir commented on August 25, 2024

yes I mean this, so I should develop my serilizerFactory, thanks for your fast answer. and I appreciate your help :) .

from msgpack-unity3d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.