2 instantiations of TransactionFlowProperty
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\TransactionFlowProperty.cs (2)
115
TransactionFlowProperty property = new
TransactionFlowProperty
();
162
property = new
TransactionFlowProperty
();
15 references to TransactionFlowProperty
System.ServiceModel.Primitives (15)
System\ServiceModel\Channels\TransactionChannel.cs (3)
100
TransactionFlowProperty
.Ensure(message).IssuedTokens.Add(rstr);
155
Transaction transaction =
TransactionFlowProperty
.TryGetTransaction(message);
177
ICollection<RequestSecurityTokenResponse> issuances =
TransactionFlowProperty
.TryGetIssuedTokens(message);
System\ServiceModel\Channels\TransactionFlowProperty.cs (11)
110
internal static
TransactionFlowProperty
Ensure(Message message)
113
return (
TransactionFlowProperty
)message.Properties[PropertyName];
115
TransactionFlowProperty
property = new TransactionFlowProperty();
120
internal static
TransactionFlowProperty
TryGet(Message message)
123
return message.Properties[PropertyName] as
TransactionFlowProperty
;
130
TransactionFlowProperty
property =
TransactionFlowProperty
.TryGet(message);
145
return ((
TransactionFlowProperty
)message.Properties[PropertyName]).Transaction;
148
private static
TransactionFlowProperty
GetPropertyAndThrowIfAlreadySet(Message message)
150
TransactionFlowProperty
property = TryGet(message);
171
TransactionFlowProperty
property = GetPropertyAndThrowIfAlreadySet(message);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
139
TransactionFlowProperty
.Set(Transaction.Current, rpc.Request);