Is there a clean way to access the commandline arguments passed as part of an AppDomain.ExecuteAssembly call that starts a WPF application?

I'm spinning up a WPF application in a separate app domain and passing arguments to the application like so:

AppDomain moduleDomain = AppDomain.CreateDomain("Friendly Name");
moduleDomain.ExecuteAssembly(path, new[] { "arg1", "arg2" });

There's a work-around to access these arguments, since both Environment.GetCommandLineArgs() and StartupEventArgs return the commandline arguments for the original application, not the one spun up with ExecuteAssembly().

I would like to access the arguments passed to the WPF application without having to manually define a Main method, preferably using StartupEventArgs. Is there a way to do so?

Starting the WPF application in a separate process works, but has performance penalties and complicates debugging.

link|improve this question

50% accept rate
1  
Considering that command line arguments is just a string and they are immutable, why not just hold it inside some string property and pass the value of that property. You can pass strings between different domains ? I think, yes. – Tigran Jan 4 at 22:58
1  
Thanks, Tigran, this lead me to a solution that I'm happy with, using AppDomain.SetData. The system won't let me post an answer for another 8 hours, but I'll post the full solution as soon as possible – Caleb Jan 4 at 23:37
feedback

1 Answer

up vote 0 down vote accepted

Tigran's comment lead me to a solution that I'm happy with, using AppDomain.SetData instead of using command line arguments. The basic outline looks like this:

AppDomain moduleDomain = AppDomain.CreateDomain("Friendly Name");
moduleDomain.SetData("arg1", "arg1Value");
moduleDomain.SetData("arg2", "arg2Value");
moduleDomain.ExecuteAssembly(path);

Then, to access the 'arguments' in the WPF app:

string arg1Value = AppDomain.CurrentDomain.GetData("arg1");
string arg2Value = AppDomain.CurrentDomain.GetData("arg2");

This works well for my use case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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