13 references to Allowed
ScenarioTests.Common.Tests (2)
ServiceInterfaces.cs (2)
914[TransactionFlow(TransactionFlowOption.Allowed)] 918[TransactionFlow(TransactionFlowOption.Allowed)]
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
37_issuedTokens = transactions ? TransactionFlowOption.Allowed : TransactionFlowOption.NotAllowed; 70_issuedTokens = value ? TransactionFlowOption.Allowed : TransactionFlowOption.NotAllowed;
System\ServiceModel\TransactionFlowOption.cs (2)
19option == TransactionFlowOption.Allowed || 25return option == TransactionFlowOption.Allowed ||
System.ServiceModel.Primitives.Tests (7)
Channels\TransactionFlowBindingElementTest.cs (7)
343Assert.Equal(1, (int)TransactionFlowOption.Allowed); 350Assert.NotEqual(TransactionFlowOption.NotAllowed, TransactionFlowOption.Allowed); 352Assert.NotEqual(TransactionFlowOption.Allowed, TransactionFlowOption.Mandatory); 360TransactionFlowAttribute attr = new TransactionFlowAttribute(TransactionFlowOption.Allowed); 361Assert.Equal(TransactionFlowOption.Allowed, attr.Transactions); 386[InlineData(TransactionFlowOption.Allowed)] 416TransactionFlowAttribute attr = new TransactionFlowAttribute(TransactionFlowOption.Allowed);