10 overrides of Namespace
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AddressHeader.cs (1)
193public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (1)
1995public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeader.cs (3)
283public override string Namespace 402public override string Namespace 553public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
836public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\MustUnderstandSoapException.cs (1)
69public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
28public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SendSecurityHeader.cs (1)
37public override string Namespace
FrameworkFork\System.ServiceModel\System\ServiceModel\WSAddressing10ProblemHeaderQNameFault.cs (1)
132public override string Namespace
19 references to Namespace
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (1)
747if (this.Version.Addressing == AddressingVersion.None && headers[i].Namespace == AddressingVersion.None.Namespace)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (1)
230(String.Compare(headerInfo.Namespace, Message12Strings.Namespace, StringComparison.Ordinal) == 0))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeader.cs (2)
116writer.WriteStartElement(this.Name, this.Namespace); 502_ns = headerInfo.Namespace;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeaders.cs (8)
399string.Format(SRServiceModel.HeaderAlreadyUnderstood, headerInfo.Name, headerInfo.Namespace), "headerInfo")); 615if (info.Name == name && info.Namespace == ns) 637if (info.Name == name && info.Namespace == ns) 670if (info.Name == name && info.Namespace == ns) 867return GetHeader<T>(index, DataContractSerializerDefaults.CreateSerializer(typeof(T), headerInfo.Name, headerInfo.Namespace, int.MaxValue/*maxItems*/)); 884if (headerInfo.Namespace == _version.Addressing.Namespace) 1387string.Format(SRServiceModel.HeaderAlreadyNotUnderstood, headerInfo.Name, headerInfo.Namespace), "headerInfo")); 1404if (info.Name == name && info.Namespace == ns)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (1)
258MessageHeaderDescription headerDescription = messageInfo.HeaderDescriptionTable.Get(header.Name, header.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
838get { return innerHeader.Namespace; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
202throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ProtocolException(string.Format(SRServiceModel.SFxHeaderNotUnderstood, headersNotUnderstood[0].Name, headersNotUnderstood[0].Namespace)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
179MessageHeaderDescription matchingHeaderDescription = headerDescriptionTable.Get(header.Name, header.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\MustUnderstandSoapException.cs (2)
32string ns = _notUnderstoodHeaders[0].Namespace; 49headers.Add(new NotUnderstoodHeader(_notUnderstoodHeaders[i].Name, _notUnderstoodHeaders[i].Namespace));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessagePartSpecification.cs (1)
186return IsHeaderIncluded(header.Name, header.Namespace);