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