2 writes to Namespace
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
593
faultDescription.
Namespace
= detailElementQname.Namespace;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
1106
fault.
Namespace
= attr.Namespace ?? contractNamespace;
9 references to Namespace
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
140
child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.
Namespace
, operation.KnownTypes));
166
child.FaultContractInfos.Add(new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.
Namespace
, operation.KnownTypes));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (2)
621
if (fault.
Namespace
!= context.Contract.Contract.Namespace)
622
faultContractAttr.Arguments.Add(new CodeAttributeArgument("Namespace", new CodePrimitiveExpression(fault.
Namespace
)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
1089
if (!XmlName.IsNullOrEmpty(existingFault.ElementName) && !XmlName.IsNullOrEmpty(fault.ElementName) && existingFault.ElementName == fault.ElementName && existingFault.
Namespace
== fault.
Namespace
)
1091
string.Format(SRServiceModel.SFxFaultContractDuplicateElement, operationName, fault.ElementName, fault.
Namespace
)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
376
FaultContractInfo faultContractInfo = new FaultContractInfo(fault.Action, fault.DetailType, fault.ElementName, fault.
Namespace
, this.Operation.KnownTypes);
518
string faultNamespace = fault.
Namespace
;