GithubHelp home page GithubHelp logo

Comments (6)

asyncx avatar asyncx commented on May 11, 2024 1

I don't know if this has been mentioned but you can workaround if you add the following lines to your project

[assembly: InternalsVisibleTo("MessagePack")]
[assembly: InternalsVisibleTo("MessagePack.Resolvers.DynamicObjectResolver")]
[assembly: InternalsVisibleTo("MessagePack.Resolvers.DynamicUnionResolver")]

This way MessagePack.Resolvers.DynamicObjectResolver will be able to access your internal types and avoid the "attempting to implement an inaccessible interface" error.

from messagepack-csharp.

neuecc avatar neuecc commented on May 11, 2024

Yes.
This is assembly builder limitation.
https://msdn.microsoft.com/en-us/library/system.reflection.emit.assemblybuilder(v=vs.110).aspx

MessagePack for C# create assembly per resolver and create dynamic formatter per resolver.

var t = DynamicObjectResolver.Instance.GetFormatter<TestObject>();

// MessagePack.Formatters.TestObjectFormatter
Console.WriteLine(t.GetType().FullName);

// MessagePack.Resolvers.DynamicObjectResolver, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
Console.WriteLine(t.GetType().Assembly.FullName);

Created assembly is same as standard assembly so can not access external internal type.

Note: But I should output more informational exception message.

from messagepack-csharp.

itn3000 avatar itn3000 commented on May 11, 2024

Thank you for response,I understand.
I think it's better adding this limitation in README, how about it?

from messagepack-csharp.

neuecc avatar neuecc commented on May 11, 2024

Thank you, I've added it.
and I'll add varidate and throw informational exception.

from messagepack-csharp.

itn3000 avatar itn3000 commented on May 11, 2024

Great thanks.
Should I close this issue, or leave for fix?

from messagepack-csharp.

neuecc avatar neuecc commented on May 11, 2024

Thanks, closed.

from messagepack-csharp.

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.