9 references to Namespaces
System.ServiceModel (9)
System\ServiceModel\Channels\ServiceChannel.cs (2)
1114if (string.Compare(code.Namespace, FaultCodeConstants.Namespaces.NetDispatch, StringComparison.Ordinal) == 0) 1139if (string.Compare(code.Namespace, FaultCodeConstants.Namespaces.NetDispatch, StringComparison.Ordinal) == 0)
System\ServiceModel\Channels\TransactionChannel.cs (1)
100FaultCode code = FaultCode.CreateSenderFaultCode(codeString, FaultCodeConstants.Namespaces.Transactions);
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1189FaultCodeConstants.Namespaces.NetDispatch);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (2)
78FaultCode code = new FaultCode(FaultCodeConstants.Codes.InternalServiceFault, FaultCodeConstants.Namespaces.NetDispatch); 100string.Compare(e.Fault.Code.SubCode.Namespace, FaultCodeConstants.Namespaces.NetDispatch, StringComparison.Ordinal) == 0 &&
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
543FaultCode code = new FaultCode(FaultCodeConstants.Codes.DeserializationFailed, FaultCodeConstants.Namespaces.NetDispatch);
System\ServiceModel\Dispatcher\TransactionBehavior.cs (2)
57faultCodeNamespace = FaultCodeConstants.Namespaces.NetDispatch; 62faultCodeNamespace = FaultCodeConstants.Namespaces.Transactions;