3 writes to Attached
System.ServiceModel (3)
System\ServiceModel\Dispatcher\TransactionBehavior.cs (2)
710
this.
Attached
= null;
722
this.
Attached
= rpc.Transaction.Current;
System\ServiceModel\InstanceContext.cs (1)
435
transaction.
Attached
= null;
7 references to Attached
System.ServiceModel (7)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1356
instanceContext.Transaction.CompletePendingTransaction(instanceContext.Transaction.
Attached
, new Exception()); // error!=null forces Tx rollback
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1701
return InstanceContext.Transaction.
Attached
;
System\ServiceModel\Dispatcher\TransactionBehavior.cs (1)
130
return rpc.InstanceContext.Transaction.
Attached
;
System\ServiceModel\InstanceContext.cs (4)
182
get { return (this.transaction != null) && !object.Equals(this.transaction.
Attached
, null); }
421
transaction.
Attached
.TransactionInformation.LocalIdentifier)
430
transaction.
Attached
.TransactionInformation.LocalIdentifier)
434
transaction.CompletePendingTransaction(transaction.
Attached
, error);