[Mono-bugs] [Bug 428054] Remote delegate call into the wrong AppDomain
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Fri Sep 26 03:44:45 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=428054
User robertj at gmx.net added comment
https://bugzilla.novell.com/show_bug.cgi?id=428054#c13
--- Comment #13 from Robert Jordan <robertj at gmx.net> 2008-09-26 01:44:44 MDT ---
I believe it is. Here's another pretty common test case which fails:
using System;
using System.Runtime.Remoting;
class Test : MarshalByRefObject
{
static void Main ()
{
AppDomain domain = AppDomain.CreateDomain ("foo");
domain.DoCallBack (new Test ().Run);
}
public void Run ()
{
Console.WriteLine (RemotingServices.IsTransparentProxy (this));
}
}
It must return "False".
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list