1 instantiation of TransactionMessageProperty
System.ServiceModel (1)
System\ServiceModel\Channels\TransactionFlowProperty.cs (1)
70
return new
TransactionMessageProperty
();
15 references to TransactionMessageProperty
System.ServiceModel (13)
System\ServiceModel\Channels\TransactionChannel.cs (1)
145
TransactionMessageProperty
.Set(transactionInfo, message);
System\ServiceModel\Channels\TransactionFlowProperty.cs (6)
45
static internal
TransactionMessageProperty
TryGet(Message message)
48
return message.Properties[PropertyName] as
TransactionMessageProperty
;
58
return ((
TransactionMessageProperty
)message.Properties[PropertyName]).Transaction;
62
static
TransactionMessageProperty
GetPropertyAndThrowIfAlreadySet(Message message)
75
TransactionMessageProperty
property = GetPropertyAndThrowIfAlreadySet(message);
82
TransactionMessageProperty
property = GetPropertyAndThrowIfAlreadySet(message);
System\ServiceModel\ComIntegration\MessageUtil.cs (1)
62
return
TransactionMessageProperty
.TryGetTransaction(message);
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
1556
TransactionMessageProperty
.Set(tx, request.RequestMessage);
1653
TransactionMessageProperty
.Set(this.transactedBatchContext.Transaction, request.RequestMessage);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
1016
rpc.TransactionMessageProperty =
TransactionMessageProperty
.TryGet(rpc.Request);
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
43
internal
TransactionMessageProperty
TransactionMessageProperty;
System\ServiceModel\Dispatcher\TransactionBehavior.cs (1)
206
transaction =
TransactionMessageProperty
.TryGetTransaction(rpc.Request);
System.ServiceModel.Routing (2)
System\ServiceModel\Routing\ClientFactory.cs (1)
439
using (this.PrepareTransactionalCall(
TransactionMessageProperty
.TryGetTransaction(message)))
System\ServiceModel\Routing\MessageRpc.cs (1)
88
this.transaction =
TransactionMessageProperty
.TryGetTransaction(message);