2 instantiations of TransactionFlowProperty
System.ServiceModel (2)
System\ServiceModel\Channels\TransactionFlowProperty.cs (2)
123
TransactionFlowProperty property = new
TransactionFlowProperty
();
171
property = new
TransactionFlowProperty
();
15 references to TransactionFlowProperty
System.ServiceModel (15)
System\ServiceModel\Channels\TransactionChannel.cs (3)
125
TransactionFlowProperty
.Ensure(message).IssuedTokens.Add(rstr);
182
Transaction transaction =
TransactionFlowProperty
.TryGetTransaction(message);
203
ICollection<RequestSecurityTokenResponse> issuances =
TransactionFlowProperty
.TryGetIssuedTokens(message);
System\ServiceModel\Channels\TransactionFlowProperty.cs (11)
118
static internal
TransactionFlowProperty
Ensure(Message message)
121
return (
TransactionFlowProperty
)message.Properties[PropertyName];
123
TransactionFlowProperty
property = new TransactionFlowProperty();
128
static internal
TransactionFlowProperty
TryGet(Message message)
131
return message.Properties[PropertyName] as
TransactionFlowProperty
;
138
TransactionFlowProperty
property =
TransactionFlowProperty
.TryGet(message);
154
return ((
TransactionFlowProperty
)message.Properties[PropertyName]).Transaction;
158
static
TransactionFlowProperty
GetPropertyAndThrowIfAlreadySet(Message message)
160
TransactionFlowProperty
property = TryGet(message);
179
TransactionFlowProperty
property = GetPropertyAndThrowIfAlreadySet(message);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
209
System.ServiceModel.Channels.
TransactionFlowProperty
.Set(Transaction.Current, rpc.Request);