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