vote up 0 vote down star
1

Does anyone know the correct method for writing a destructor for an XBAP application?

flag

Can you please explain further? As it stands, this question doesn't make much sense at all... – Paul Betts Jun 1 at 9:01

1 Answer

vote up 5 vote down check

XBAP applications are managed WPF applications that run in a browser and hence shouldn't support deterministic cleanup.. aka destruction. The Dispose pattern is the answer for any cleanup that needs to be explicitly performed.

Or if just wanted to run some code just before shutdown... look at the Application class, which exposes life-time methods/events like OnExit/Exit.

link|flag

Your Answer

Get an OpenID
or

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