8 references to HeaderNamespace
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1045if (string.Compare(code.Namespace, SecurityVersion.Default.HeaderNamespace.Value, StringComparison.Ordinal) == 0)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
30get { return this.StandardsManager.SecurityVersion.HeaderNamespace.Value; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityVersion.cs (5)
91return message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value) >= 0; 96return message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, actors); 117int headerIndex = message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, actor); 120headerIndex = message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, message.Version.Envelope.UltimateDestinationActorValues); 142writer.WriteStartElement(this.HeaderPrefix.Value, this.HeaderName, this.HeaderNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SendSecurityHeader.cs (1)
39get { return this.StandardsManager.SecurityVersion.HeaderNamespace.Value; }