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