1 write to Namespace
System.ServiceModel.Primitives (1)
System\ServiceModel\Description\TypeLoader.cs (1)
1133fault.Namespace = attr.Namespace ?? contractNamespace;
7 references to Namespace
System.ServiceModel.Primitives (7)
System\ServiceModel\Description\DispatcherBuilder.cs (2)
138child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes)); 165child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, operation.KnownTypes));
System\ServiceModel\Description\TypeLoader.cs (3)
1109if (!XmlName.IsNullOrEmpty(existingFault.ElementName) && !XmlName.IsNullOrEmpty(fault.ElementName) && existingFault.ElementName == fault.ElementName && existingFault.Namespace == fault.Namespace) 1112SRP.Format(SRP.SFxFaultContractDuplicateElement, operationName, fault.ElementName, fault.Namespace)));
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
424FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.Namespace, Operation.KnownTypes); 684string faultNamespace = fault.Namespace;