37 references to FaultCode
System.ServiceModel (28)
System\ServiceModel\Channels\MessageFault.cs (2)
693return new FaultCode(localName, ns); 715FaultCode code = new FaultCode(name, ns);
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (3)
3173FaultCode subCode = new FaultCode(WsrmFeb2005Strings.ConnectionLimitReached, 3187code = new FaultCode(WsrmFeb2005Strings.CreateSequenceRefused, WsrmIndex.GetNamespaceString(reliableMessagingVersion)); 3281FaultCode subCode = new FaultCode(AddressingStrings.EndpointUnavailable, version.Addressing.Namespace);
System\ServiceModel\Channels\WsrmFault.cs (4)
27this.code = new FaultCode("Sender", ""); 31this.code = new FaultCode("Receiver", ""); 137FaultCode subCode = new FaultCode(this.subcode, 210return new FaultCode(subcode, WsrmIndex.GetNamespaceString(this.GetReliableMessagingVersion()));
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
78FaultCode code = new FaultCode(FaultCodeConstants.Codes.InternalServiceFault, FaultCodeConstants.Namespaces.NetDispatch);
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
543FaultCode code = new FaultCode(FaultCodeConstants.Codes.DeserializationFailed, FaultCodeConstants.Namespaces.NetDispatch);
System\ServiceModel\FaultCode.cs (2)
121return CreateSenderFaultCode(new FaultCode(name, ns)); 133return CreateReceiverFaultCode(new FaultCode(name, ns));
System\ServiceModel\MustUnderstandSoapException.cs (1)
38FaultCode code = new FaultCode(MessageStrings.MustUnderstandFault, this.envelopeVersion.Namespace);
System\ServiceModel\Security\MessageSecurityProtocolFactory.cs (1)
222FaultCode subCode = new FaultCode(wss.InvalidSecurityFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (3)
918subCode = new FaultCode(TrustApr2004Strings.FailedAuthenticationFaultCode, TrustFeb2005Strings.Namespace); 925subCode = new FaultCode(DotNetSecurityStrings.SecurityServerTooBusyFault, DotNetSecurityStrings.Namespace); 931subCode = new FaultCode(TrustApr2004Strings.InvalidRequestFaultCode, TrustFeb2005Strings.Namespace);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (3)
448subCode = new FaultCode(DotNetSecurityStrings.SecurityServerTooBusyFault, DotNetSecurityStrings.Namespace); 455subCode = new FaultCode(AddressingStrings.EndpointUnavailable, request.Version.Addressing.Namespace); 461subCode = new FaultCode(TrustApr2004Strings.InvalidRequestFaultCode, TrustFeb2005Strings.Namespace);
System\ServiceModel\Security\SecurityUtils.cs (4)
1307FaultCode subCode = new FaultCode(scDriver.BadContextTokenFaultCode.Value, scDriver.Namespace.Value); 1370subCode = new FaultCode(wss.FailedAuthenticationFaultCode.Value, wss.HeaderNamespace.Value); 1375subCode = new FaultCode(wss.InvalidSecurityTokenFaultCode.Value, wss.HeaderNamespace.Value); 1385subCode = new FaultCode(wss.InvalidSecurityFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\WSAddressing10ProblemHeaderQNameFault.cs (3)
33new FaultCode(Addressing10Strings.InvalidCardinality, 39new FaultCode(Addressing10Strings.MessageAddressingHeaderRequired, 52new FaultCode(Addressing10Strings.ActionMismatch, AddressingVersion.WSAddressing10.Namespace));
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\Dispatcher\OperationExecutionFault.cs (9)
62instanceLockedFaultCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceLockedUnderTransaction, XD2.WorkflowServices.Namespace); 71instanceUnloadedFaultCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceUnloaded, XD2.WorkflowServices.Namespace); 80instanceNotFoundCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceNotFound, XD2.WorkflowServices.Namespace); 89instanceCompletedCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceCompleted, XD2.WorkflowServices.Namespace); 98instanceTerminatedCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceTerminated, XD2.WorkflowServices.Namespace); 107instanceSuspendedFaultCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceSuspended, XD2.WorkflowServices.Namespace); 116operationNotAvailableFaultCode = new FaultCode(XD2.WorkflowControlServiceFaults.OperationNotAvailable, XD2.WorkflowServices.Namespace); 125instanceAbortedCode = new FaultCode(XD2.WorkflowControlServiceFaults.InstanceAborted, XD2.WorkflowServices.Namespace); 134updatedFailedFaultCode = new FaultCode(XD2.WorkflowControlServiceFaults.UpdateFailed, XD2.WorkflowServices.Namespace);