I'm using a COM Object to open an EPS file, which was created by a newer version of Illustrator than the one I'm using. I want to get the content of Dialogs similar to this to save, how do I do it.

using Illustrator;
using System;
internal class Program
{
private static void Main(string[] args)
{
Application app = GetIllustrator();
Console.WriteLine("open file");
Document doc = app.Open("Z:\\greater-than-current-version.eps");
Console.WriteLine("open done");
}
private static Application GetIllustrator()
{
while (true)
{
try {
Application app = new()
{
//UserInteractionLevel = AiUserInteractionLevel.aiDisplayAlerts
};
return app;
} catch (COMException e) {
Thread.Sleep(500);
}
}
}
}