31 references to WWWAuthenticate
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
60
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, "Bearer");
Microsoft.AspNetCore.Authentication.JwtBearer (2)
JwtBearerHandler.cs (2)
302
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, Options.Challenge);
344
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, builder.ToString());
Microsoft.AspNetCore.Authentication.Negotiate (3)
NegotiateHandler.cs (3)
182
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, AuthHeaderPrefix + outgoing);
196
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, AuthHeaderPrefix + outgoing);
394
Response.Headers.Append(HeaderNames.
WWWAuthenticate
, NegotiateVerb);
Microsoft.AspNetCore.Http.Features (2)
IHeaderDictionary.Keyed.cs (2)
257
StringValues WWWAuthenticate { get => this[HeaderNames.
WWWAuthenticate
]; set => this[HeaderNames.
WWWAuthenticate
] = value; }
Microsoft.AspNetCore.Server.HttpSys (4)
AuthenticationManager.cs (2)
185
context.Response.Headers[HeaderNames.
WWWAuthenticate
]
186
= StringValues.Concat(context.Response.Headers[HeaderNames.
WWWAuthenticate
], challenges.ToArray());
src\aspnetcore\src\Shared\HttpSys\NativeInterop\HttpApiTypes.cs (1)
54
HeaderNames.
WWWAuthenticate
,
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
35
HeaderNames.
WWWAuthenticate
, HeaderNames.Authorization, HeaderNames.ProxyAuthenticate, HeaderNames.ProxyAuthorization, HeaderNames.SetCookie, HeaderNames.Cookie,
Microsoft.AspNetCore.Server.IIS (2)
src\aspnetcore\src\Shared\HttpSys\NativeInterop\HttpApiTypes.cs (1)
54
HeaderNames.
WWWAuthenticate
,
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
35
HeaderNames.
WWWAuthenticate
, HeaderNames.Authorization, HeaderNames.ProxyAuthenticate, HeaderNames.ProxyAuthorization, HeaderNames.SetCookie, HeaderNames.Cookie,
Microsoft.AspNetCore.Server.Kestrel.Core (17)
Internal\Http\HttpHeaders.Generated.cs (17)
368
HeaderNames.
WWWAuthenticate
,
2469
if (!TryGetUnknown(HeaderNames.
WWWAuthenticate
, ref value))
2478
SetValueUnknown(HeaderNames.
WWWAuthenticate
, value);
9909
ValidateHeaderValueCharacters(HeaderNames.
WWWAuthenticate
, value, EncodingSelector);
11441
if (ReferenceEquals(HeaderNames.
WWWAuthenticate
, key))
11487
if (HeaderNames.
WWWAuthenticate
.Equals(key, StringComparison.OrdinalIgnoreCase))
12086
if (ReferenceEquals(HeaderNames.
WWWAuthenticate
, key))
12117
if (HeaderNames.
WWWAuthenticate
.Equals(key, StringComparison.OrdinalIgnoreCase))
12891
if (ReferenceEquals(HeaderNames.
WWWAuthenticate
, key))
12942
if (HeaderNames.
WWWAuthenticate
.Equals(key, StringComparison.OrdinalIgnoreCase))
13783
if (ReferenceEquals(HeaderNames.
WWWAuthenticate
, key))
13834
if (HeaderNames.
WWWAuthenticate
.Equals(key, StringComparison.OrdinalIgnoreCase))
14787
array[arrayIndex] = new KeyValuePair<string, StringValues>(HeaderNames.
WWWAuthenticate
, _headers._WWWAuthenticate);
15476
_current = new KeyValuePair<string, StringValues>(HeaderNames.
WWWAuthenticate
, _collection._headers._WWWAuthenticate);
17045
if (!TryGetUnknown(HeaderNames.
WWWAuthenticate
, ref value))
17054
ValidateHeaderValueCharacters(HeaderNames.
WWWAuthenticate
, value, EncodingSelector);
17055
SetValueUnknown(HeaderNames.
WWWAuthenticate
, value);