System.MethodAccessException, CAS and Visual Studio debugger

十年热恋 提交于 2019-12-10 17:42:40

问题


I am calling ModelMetadataProviders.Current.GetMetadataForProperties to fetch list of ModelMetadata in WPF application with Visual Studio 2010. This call executes fine and I get IEnumerable<> in return. At the code line, where I try to iterate over this, I get System.MethodAccessException.

Funny thing is it happens only if I am debugging with F5. If I run code with Ctrl+F5, then I do NOT get this exception and code works fine. If I run exe from windows explorer, it runs fine as well.

Surely, I am missing something. May be, System.Web.Mvc cannot used from WPF app? (why) Is there something about visual studio debugger?

Any help will be appreciated.

Here is whole exception:

Attempt by security transparent method 'System.Web.Mvc.TypeDescriptorHelper.Get(System.Type)' to access security critical method 'System.ComponentModel.DataAnnotations.AssociatedMetadataTypeTypeDescriptionProvider..ctor(System.Type)' failed.

Assembly 'System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' is a conditionally APTCA assembly which is not enabled in the current AppDomain. To enable this assembly to be used by partial trust or security transparent code, please add assembly name 'System.ComponentModel.DataAnnotations, PublicKey=0024000004800000940000000602000000240000525341310004000001000100B5FC90E7027F67871E773A8FDE8938C81DD402BA65B9201D60593E96C492651E889CC13F1415EBB53FAC1131AE0BD333C5EE6021672D9718EA31A8AEBD0DA0072F25D87DBA6FC90FFD598ED4DA35E44C398C454307E8E33B8426143DAEC9F596836F97C8F74750E5975C64E2189F45DEF46B2A2B1247ADC3652BF5C308055DA9' to the the PartialTrustVisibleAssemblies list when creating the AppDomain.


回答1:


This is a known bug in System.ComponentModel.DataAnnotations.dll which will be fixed for the next release of the .NET Framework. In short, the DataAnnotations assembly is marked as conditionally APTCA since it was originally intended for use only by ASP.NET applications. The assembly has become more useful so that it can be consumed outside of ASP.NET, but we forgot to remove the conditional APTCA flag from the assembly. This causes transparent DLLs (like System.Web.Mvc.dll) to fail when accessing this assembly outside of an ASP.NET application in certain AppDomains, such as those instantiated by the VS debugging process.

To answer your other question: System.Web.Mvc.dll was never tested for use outside of an ASP.NET application. It has several hooks into System.Web.dll and other related assemblies, so it's not too surprising that it would blow up at some point.




回答2:


Thanks for information, Levi.

As I could not use DataAnnotations becuase of said bug, I did some coding of my own - which involves reflection. And I faced problem :-( with CompareAttribute when calling GetCustomAttributes.

But, then I found a workaround.

It seems that issue is with Visual Studio Hosting Process.

If I disable visual studio hosting process, both problems go away!



来源:https://stackoverflow.com/questions/6402384/system-methodaccessexception-cas-and-visual-studio-debugger

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!