| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 10 months |
| seen | 9 hours ago | |
| stats | profile views | 68 |
|
May 15 |
revised |
How application domain can be useful in exception handling? Typo |
|
May 15 |
comment |
Event wiring with mef @Stephen Where is the call to RememberDescription and where is the implementation of InvokeResult? Also why BaseModule does not implement IModule? |
|
May 14 |
answered | How application domain can be useful in exception handling? |
|
May 14 |
comment |
.NET Rapidly Loading and Unloading AppDomains @Andrew I don't know. It could be .NET itself or a thrid party library that you might be using. When it happens during debugging you might examine the stack trace to locate who loads the config file. Outside of a debugger the stack trace will most probably be found in an Application Error Event created by the .NET Runtime. |
|
May 12 |
comment |
Dynamic load assembly, how to specify the abstraction? @J.Lennon You are talking about altering the implementation of Foo and then in the next paragraph about loading the other Basic class. Are they the same? Did you meant implementation of Basic? What you are trying to accomplish is vague. More info is needed. Are you implementing a script engine (on-site compilation)? How would you like to revert to another impl of Basic? Are you using strong-named assemblies? Do you create any AppDomains (tag)? Can multiple impls of Basic coexist? |
|
May 10 |
comment |
Passing an unmanaged IntPtr across app domains with NetPipes @Adam Copy it on disk asynchronously and then use the path. It will take a couple of minutes more but it will work. If this is not an option, try to rephrase the question to attract more people. If you already have a working, but slow solution (like copying it on disk) then mention it and add the optimization tag. |
|
May 10 |
awarded | Civic Duty |
|
May 10 |
revised |
Managed Extensibility Framework (MEF), why are Imports needed? Added a mention to the Recomposition feature of MEF. |
|
May 10 |
comment |
Passing an unmanaged IntPtr across app domains with NetPipes Yes, have a look at it. Check this simple intro c-sharpcorner.com/UploadFile/b942f9/using-memory-mapped-files |
|
May 10 |
answered | Managed Extensibility Framework (MEF), why are Imports needed? |
|
May 10 |
comment |
Passing an unmanaged IntPtr across app domains with NetPipes Are you using the System.IO.MemoryMappedFiles.MemoryMappedFile class to share memory between processes? |
|
May 8 |
answered | C#, MAF, Unhandled Exception Management in separate AppDomain |
|
May 8 |
comment |
MEF, why are identical duplicates of one and the same exported plugin created? @Freddy That's great! Thanks for sharing. |
|
May 7 |
comment |
.NET Rapidly Loading and Unloading AppDomains @Andrew To an event in your own MarshalByRefObject derived class. The one that is being used by your main AppDomain. Add your own event and raise it when the startup work is done (for example when the configuration file is loaded). Your main AppDomain should subscribe to it and enable the unload feature only when the event is raised. |
|
May 7 |
comment |
.NET Rapidly Loading and Unloading AppDomains You shouldn't allow for the unload until the AppDomain is fully loaded. You can add an event in your MarshalByRefObject derived class or add some kind of delay. |
|
May 7 |
answered | MEF, why are identical duplicates of one and the same exported plugin created? |
|
May 3 |
answered | Application crash when anoter domain throws exception |
|
May 2 |
answered | Overriding ToString() on MEF MetadataAttribute |
|
May 1 |
comment |
XCOPY seems to drain redirected input @Endoro I apologize, I thought it was obvious. |
|
May 1 |
comment |
XCOPY seems to drain redirected input Thanks! It was in front of me and I couldn't see it. |