4 overrides of Namespace
System.ServiceModel (4)
System\ServiceModel\Channels\AddressHeader.cs (2)
277public override string Namespace 351public override string Namespace
System\ServiceModel\Channels\ContextAddressHeader.cs (1)
27public override string Namespace
System\ServiceModel\Transactions\WsatRegistrationHeader.cs (1)
39public override string Namespace
12 references to Namespace
System.ServiceModel (12)
System\ServiceModel\Channels\AddressHeader.cs (4)
107return GetValue<T>(DataContractSerializerDefaults.CreateSerializer(typeof(T), this.Name, this.Namespace, int.MaxValue/*maxItems*/)); 119throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.ExpectedElementMissing, Name, Namespace))); 149writer.WriteStartElement(Name, Namespace); 205get { return parameter.Namespace; }
System\ServiceModel\Channels\AddressHeaderCollection.cs (2)
89if (header.Name == name && header.Namespace == ns) 110if (header.Name == name && header.Namespace == ns)
System\ServiceModel\Channels\CallbackContextMessageProperty.cs (1)
198if (builder.Headers[i].Name == ContextMessageHeader.ContextHeaderName && builder.Headers[i].Namespace == ContextMessageHeader.ContextHeaderNamespace)
System\ServiceModel\Dispatcher\EndpointAddressMessageFilter.cs (1)
241qname.ns = parameter.Namespace;
System\ServiceModel\Dispatcher\EndpointAddressMessageFilterTable.cs (2)
189qname.ns = parameter.Namespace; 769qname.ns = parameter.Namespace;
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (2)
296if (channelEncryptionParts.IsHeaderIncluded(header.Name, header.Namespace)) 298throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityNegotiationException(SR.GetString(SR.SecurityNegotiationCannotProtectConfidentialEndpointHeader, target, header.Name, header.Namespace)));