views:

71

answers:

1

I need to put request specific data in WCF? Is it safe to use ThreadStatic variable in WCF?

+2  A: 

I would recommend you to use OperationContext. Here's an example of how you could use it to persist some state.

Darin Dimitrov