I want to perform
[OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]
int Add(int x, int y);
from code using custom IOperationBehavior implementation. as mentioned here http://sankarsan.wordpress.com/2009/01/04/wcf-behavior/ i can add custom behavior from code. But i couldn't find any help on custom IOperantionBehavior implementation for "TransactionScopeRequired". Any help regarding this?