public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist, string name) { var newScope = new TxScope(txEnlist) { OuterScope = outerScope, Name = name }; return(newScope); }
public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist) { return(GetScope(outerScope, txEnlist, null)); }