15 references to Actions
System.ServiceModel (15)
System\ServiceModel\Channels\SecurityBindingElement.cs (4)
866result.IncomingSignatureParts.AddParts(signedParts, FaultCodeConstants.Actions.NetDispatcher); 867result.OutgoingSignatureParts.AddParts(signedParts, FaultCodeConstants.Actions.NetDispatcher); 868result.IncomingEncryptionParts.AddParts(encryptedParts, FaultCodeConstants.Actions.NetDispatcher); 869result.OutgoingEncryptionParts.AddParts(encryptedParts, FaultCodeConstants.Actions.NetDispatcher);
System\ServiceModel\Channels\TransactionChannel.cs (1)
101FaultException fault = new FaultException(reason, code, FaultCodeConstants.Actions.Transactions);
System\ServiceModel\Channels\TransactionChannelFaultConverter.cs (1)
23if (message.Headers.Action == FaultCodeConstants.Actions.Transactions)
System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
353requirements.OutgoingSignatureParts.AddParts(body, FaultCodeConstants.Actions.Transactions); 354requirements.OutgoingEncryptionParts.AddParts(body, FaultCodeConstants.Actions.Transactions);
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1191string action = FaultCodeConstants.Actions.NetDispatcher;
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
80string action = FaultCodeConstants.Actions.NetDispatcher;
System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
182faultContractInfos.Add(new FaultContractInfo(FaultCodeConstants.Actions.NetDispatcher, typeof(ExceptionDetail)));
System\ServiceModel\Dispatcher\NetDispatcherFaultException.cs (2)
13: base(reason, code, FaultCodeConstants.Actions.NetDispatcher, innerException) 17: base(reason, code, FaultCodeConstants.Actions.NetDispatcher, innerException)
System\ServiceModel\Dispatcher\TransactionBehavior.cs (2)
58action = FaultCodeConstants.Actions.NetDispatcher; 63action = FaultCodeConstants.Actions.Transactions;