internalsvisibleto
How can I make InternalsVisibleTo attribute work by signing a public token key safely?
I am trying to expose some internals to my unit test project by using: [assembly: InternalsVisibleTo(\"MyTest\")][详细]
2023-03-30 22:28 分类:问答C# - Security concerns with InternalsVisibleTo attribute
Are there any security concerns with using the InternalsVisibleTo attribute with strong-named assemblies?I understand that the assembly receiving information this way must have the private key to decr[详细]
2023-03-27 23:31 分类:问答InternalsVisibleTo for dynamically generated assembly, but with strong naming
I have a project that uses dynamic code generation to create a proxy class.This proxy class makes use of internal classes of the project (so that implementation details are not exposed) and so I use I[详细]
2023-02-09 13:33 分类:问答InternalsVisibleTo is not working for wpf application
I have the [assembly:InternalsVisibleTo(\"GuiAssembly\")] set in the other assembly but when wpf binding occurs on a class that lives in the other assembly, it throws an exception because of the prope[详细]
2023-01-23 11:17 分类:问答When should [assembly: InternalsVisibleTo()] be used?
I understand that the InternalVisibleTo attribute is used to expose types and methods with the internal access modifier to a specified assembly. I have only ever used this for exposing internal method[详细]
2023-01-07 16:46 分类:问答Silverlight security: giving a permission to access anonymous classes to a class library
I\'m porting an existing class library to Silverlight. I used lambda expression compilation a lot and now I\'m experiencing security problems because of it.[详细]
2022-12-12 17:12 分类:问答What is "AllInternalsVisible" parameter of assembly:InternalsVisibleTo attribute?
My IntelliSense is comi开发者_StackOverflow中文版ng up with a boolean named parameter \"AllInternalsVisible=\" in an [assembly:InternalsVisibleTo(\"AssemblyName\")] declaration.Just position the curso[详细]
2022-12-08 08:11 分类:问答