tags:

views:

34

answers:

1

I am working on an application that requires running out of browser; How can I test if the application is running Out of Browser?

+2  A: 

Use the property on the Application object:

if (System.Windows.Application.Current.IsRuningOutOfBrowser)
{
    // The app is out of browser
}
Jeff Wilcox