[Mono-bugs] [Bug 701566] New: AsymmetricAlgorithm.Dispose	MissingMethodException
    bugzilla_noreply at novell.com 
    bugzilla_noreply at novell.com
       
    Wed Jun 22 09:25:54 EDT 2011
    
    
  
https://bugzilla.novell.com/show_bug.cgi?id=701566
https://bugzilla.novell.com/show_bug.cgi?id=701566#c0
           Summary: AsymmetricAlgorithm.Dispose MissingMethodException
    Classification: Mono
           Product: Mono: Class Libraries
           Version: 2.10.x
          Platform: i386
        OS/Version: Windows 7
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: CORLIB
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: j.schoot at divitec.nl
         QAContact: mono-bugs at lists.ximian.com
          Found By: Community User
           Blocker: ---
AsymmetricAlgorithm seems to have no implementation of a public void Dispose
method. This causes a MissingMethodException when the Dispose of the
AsymmetricAlgorithm or any of its derived classes is called.
Reproducible: Always
Steps to Reproduce:
using System;
using System.Security.Cryptography;
namespace AsymmetricalAlgorithm
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Start");
            var rsa = new RSACryptoServiceProvider();
            rsa.Dispose();
            Console.WriteLine("Done");
        }
    }
}
-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
    
    
More information about the mono-bugs
mailing list