I have to call a C# function from Java Script in an embedded Webkit browser (OpenWebkitSharp). For .NET 4.0 this can be easily done with:
<webkitbrowser>.GetScriptManager.GlobalContext.GetGlobalObject().SetProperty("CallbackHandler", new CallBackhandler());
Unfortunately .NET 40 crashes my application and I'm looking for a way, to do this in .NET 20 (Visual Studio 2005).
Any ideas?
Tom