10 overrides of Namespace
System.ServiceModel.Primitives (10)
System\ServiceModel\Channels\AddressHeader.cs (1)
225public override string Namespace
System\ServiceModel\Channels\Message.cs (1)
2175public override string Namespace
System\ServiceModel\Channels\MessageHeader.cs (3)
332public override string Namespace 446public override string Namespace 607public override string Namespace
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
894public override string Namespace
System\ServiceModel\MustUnderstandSoapException.cs (1)
72public override string Namespace
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
229public override string Namespace
System\ServiceModel\Security\SendSecurityHeader.cs (1)
214public override string Namespace
System\ServiceModel\WSAddressing10ProblemHeaderQNameFault.cs (1)
133public override string Namespace
26 references to Namespace
Contract.Message.IntegrationTests (3)
MessageContractTests.cs (3)
46proxy.CreateMessageHeader(customHeaderMustUnderstand_False.Name, customHeaderMustUnderstand_False.Namespace, customHeaderMustUnderstand_False.MustUnderstand); 62proxy.CreateMessageHeader(customHeaderMustUnderstand_True.Name, customHeaderMustUnderstand_True.Namespace, customHeaderMustUnderstand_True.MustUnderstand); 80proxy.CreateMessageHeader(customHeaderMustUnderstand_True.Name, customHeaderMustUnderstand_True.Namespace, customHeaderMustUnderstand_True.MustUnderstand);
System.ServiceModel.Primitives (23)
System\ServiceModel\Channels\Message.cs (1)
840if (Version.Addressing == AddressingVersion.None && headers[i].Namespace == AddressingVersion.None.Namespace)
System\ServiceModel\Channels\MessageFault.cs (1)
263(String.Compare(headerInfo.Namespace, Message12Strings.Namespace, StringComparison.Ordinal) == 0))
System\ServiceModel\Channels\MessageHeader.cs (2)
137writer.WriteStartElement(Name, Namespace); 552_ns = headerInfo.Namespace;
System\ServiceModel\Channels\MessageHeaders.cs (8)
467SRP.Format(SRP.HeaderAlreadyUnderstood, headerInfo.Name, headerInfo.Namespace), "headerInfo")); 709if (info.Name == name && info.Namespace == ns) 731if (info.Name == name && info.Namespace == ns) 776if (info.Name == name && info.Namespace == ns) 1004return GetHeader<T>(index, DataContractSerializerDefaults.CreateSerializer(typeof(T), headerInfo.Name, headerInfo.Namespace, int.MaxValue/*maxItems*/)); 1024if (headerInfo.Namespace == MessageVersion.Addressing.Namespace) 1560SRP.Format(SRP.HeaderAlreadyNotUnderstood, headerInfo.Name, headerInfo.Namespace), "headerInfo")); 1583if (info.Name == name && info.Namespace == ns)
System\ServiceModel\Channels\WsrmMessageInfo.cs (1)
216if (header.Namespace == wsrmNs)
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (1)
319MessageHeaderDescription headerDescription = messageInfo.HeaderDescriptionTable.Get(header.Name, header.Namespace);
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
896get { return innerHeader.Namespace; }
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
182throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ProtocolException(SRP.Format(SRP.SFxHeaderNotUnderstood, headersNotUnderstood[0].Name, headersNotUnderstood[0].Namespace)));
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
195MessageHeaderDescription matchingHeaderDescription = headerDescriptionTable.Get(header.Name, header.Namespace);
System\ServiceModel\MustUnderstandSoapException.cs (2)
35string ns = NotUnderstoodHeaders[0].Namespace; 52headers.Add(new NotUnderstoodHeader(NotUnderstoodHeaders[i].Name, NotUnderstoodHeaders[i].Namespace));
System\ServiceModel\Security\MessagePartSpecification.cs (1)
198return IsHeaderIncluded(header.Name, header.Namespace);
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
813Fx.Assert(header.Name == Name && header.Namespace == Namespace && header.Actor == Actor, "security header index mismatch");
System\ServiceModel\Security\WSSecurityOneDotZeroSendSecurityHeader.cs (2)
247(header.Namespace == Message.Version.Addressing.Namespace)) 300if (Version.Addressing == AddressingVersion.None && header.Namespace == AddressingVersion.None.Namespace)