1 write to Action
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncodingBindingElementImporter.cs (1)
79fault.Action = soapAction;
14 references to Action
dotnet-svcutil-lib (14)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
368ProtectionLevel newProtectionLevel = GetProtectionLevel(messageSignedParts.IsBodyIncluded, messageEncryptedParts.IsBodyIncluded, fault.Action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
140child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes)); 166child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\FaultDescriptionCollection.cs (2)
21if (description != null && action == description.Action) 33if (description != null && action == description.Action)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (2)
609if (fault.Action != null) 610faultContractAttr.Arguments.Add(new CodeAttributeArgument("Action", new CodePrimitiveExpression(fault.Action)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
303WSAddressingHelper.AddActionAttribute(fault.Action, wsdlOperationFault, this.PolicyVersion);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
376FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, this.Operation.KnownTypes);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
363requirements.IncomingSignatureParts.AddParts(signedParts, fault.Action); 364requirements.IncomingEncryptionParts.AddParts(encryptedParts, fault.Action); 368requirements.OutgoingSignatureParts.AddParts(signedParts, fault.Action); 369requirements.OutgoingEncryptionParts.AddParts(encryptedParts, fault.Action);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
1391if (protectionRequirements.OutgoingEncryptionParts.TryGetParts(fault.Action, out parts))