Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After resolving one issue with IMetaDataImport, I'm dealing with another for quite a long time. It's with EnumGenericParams method.

The method throws AccessViolationExpcetion, but this happens only sometimes. In the other cases the method returns from calling without any problems, but its parameters are the same as the parameters when it throws expcetion. I can't find out why only sometimes.

Also, the AccessViolationExpcetion can't be catch by catch statement. When debugging in VS 2010, the exception TargetInvocationException is first caught with InnerException set to AccessViolationExpcetion.

The definition of IMetaDataImport2 and EnumGenericParams:

[ComImport]
[Guid("<valid GUID>")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[CLSCompliant(false)]
public interface IMetaDataImport2 : IMetaDataImport {
....
    void EnumGenericParams(
     [ComAliasName("HCORENUM*"), In, Out] ref IntPtr phEnum,
     [ComAliasName("mdToken")] mdToken tk,
     [ComAliasName("mdGenericParam*"), Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=3)] mdToken[] rGenericParams,
     [ComAliasName("ULONG")] uint cGenericParams,
     [ComAliasName("ULONG*"), Out] out uint pcGenericParams
     );
    ....

The method calling:

metadataImport2.EnumGenericParams(ref pEnum, memberDef, null, 0, out genParamCount);

(Even calling with third parameter not null and fourth > 0 leads to exception.)

The problem occured when I moved app from .NET 3.5 to .NET 4.

Thank you for any help!

share|improve this question
After moving the app back to .NET 3.5 (ClientProfile), the method still throws AccessViolationExpcetion, but it can be catch by catch statement. – Paulie Jan 19 '12 at 19:21

1 Answer

up vote 0 down vote accepted

Uff (for the second time :-) ), it seems that setting SecurityPermissions high enough can get rid of the problem:

[SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.AllFlags)]
void EnumGenericParams(
  [ComAliasName("HCORENUM*"), In, Out] ref IntPtr phEnum,
  [ComAliasName("mdToken")] mdToken tk,
  [ComAliasName("mdGenericParam*"), Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=3)] mdToken[] rGenericParams,
  [ComAliasName("ULONG")] uint cGenericParams,
  [ComAliasName("ULONG*"), Out] out uint pcGenericParams
  );

Also, assembly with the IMetaDataInterface2 should be under .NET 3.5 (or possibly lower).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.