15 references to HeaderNamespace
System.ServiceModel (15)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1128if (string.Compare(code.Namespace, SecurityVersion.Default.HeaderNamespace.Value, StringComparison.Ordinal) == 0)
System\ServiceModel\Dispatcher\AuthenticationBehavior.cs (1)
152FaultCode faultCode = FaultCode.CreateSenderFaultCode(wss.InvalidSecurityFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\Dispatcher\AuthorizationBehavior.cs (1)
164FaultCode faultCode = FaultCode.CreateSenderFaultCode(wss.FailedAuthenticationFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\Security\MessageSecurityProtocolFactory.cs (1)
222FaultCode subCode = new FaultCode(wss.InvalidSecurityFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
386get { return this.StandardsManager.SecurityVersion.HeaderNamespace.Value; }
System\ServiceModel\Security\SecurityUtils.cs (4)
1283return (subCode.Namespace == standardsManager.SecurityVersion.HeaderNamespace.Value 1370subCode = new FaultCode(wss.FailedAuthenticationFaultCode.Value, wss.HeaderNamespace.Value); 1375subCode = new FaultCode(wss.InvalidSecurityTokenFaultCode.Value, wss.HeaderNamespace.Value); 1385subCode = new FaultCode(wss.InvalidSecurityFaultCode.Value, wss.HeaderNamespace.Value);
System\ServiceModel\Security\SecurityVersion.cs (5)
100return message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value) >= 0; 105return message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, actors); 127int headerIndex = message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, actor); 130headerIndex = message.Headers.FindHeader(this.HeaderName.Value, this.HeaderNamespace.Value, message.Version.Envelope.UltimateDestinationActorValues); 152writer.WriteStartElement(this.HeaderPrefix.Value, this.HeaderName, this.HeaderNamespace);
System\ServiceModel\Security\SendSecurityHeader.cs (1)
162get { return this.StandardsManager.SecurityVersion.HeaderNamespace.Value; }