Home
last modified time | relevance | path

Searched refs:WwwAuthenticate (Results 1 – 25 of 102) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/tests/UnitTests/Headers/
H A DHttpResponseHeadersTest.cs179 Assert.Equal(0, headers.WwwAuthenticate.Count); in WwwAuthenticate_ReadAndWriteProperty_CallsForwardedToHttpGeneralHeaders()
184 Assert.Equal(2, headers.WwwAuthenticate.Count); in WwwAuthenticate_ReadAndWriteProperty_CallsForwardedToHttpGeneralHeaders()
188 headers.WwwAuthenticate.ElementAt(0)); in WwwAuthenticate_ReadAndWriteProperty_CallsForwardedToHttpGeneralHeaders()
190 headers.WwwAuthenticate.ElementAt(1)); in WwwAuthenticate_ReadAndWriteProperty_CallsForwardedToHttpGeneralHeaders()
192 headers.WwwAuthenticate.Clear(); in WwwAuthenticate_ReadAndWriteProperty_CallsForwardedToHttpGeneralHeaders()
209 headers.WwwAuthenticate.ElementAt(0)); in WwwAuthenticate_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
211 headers.WwwAuthenticate.ElementAt(1)); in WwwAuthenticate_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
213 headers.WwwAuthenticate.ElementAt(2)); in WwwAuthenticate_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
215 headers.WwwAuthenticate.ElementAt(3)); in WwwAuthenticate_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
217 headers.WwwAuthenticate.ElementAt(4)); in WwwAuthenticate_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
[all …]
H A DHttpHeaderValueCollectionTest.cs200 Assert.True(headers.WwwAuthenticate.TryParseAdd(null)); in TryParseAdd_CallWithNullValue_NothingAdded()
202 Assert.False(headers.WwwAuthenticate.IsSpecialValueSet); in TryParseAdd_CallWithNullValue_NothingAdded()
203 Assert.Equal(0, headers.WwwAuthenticate.Count); in TryParseAdd_CallWithNullValue_NothingAdded()
204 Assert.Equal(String.Empty, headers.WwwAuthenticate.ToString()); in TryParseAdd_CallWithNullValue_NothingAdded()
239 Assert.False(headers.WwwAuthenticate.TryParseAdd(input)); in TryParseAdd_AddBadValue_False()
240 Assert.Equal(string.Empty, headers.WwwAuthenticate.ToString()); in TryParseAdd_AddBadValue_False()
250 Assert.False(headers.WwwAuthenticate.TryParseAdd(input)); in TryParseAdd_AddBadAfterGoodValue_False()
251 Assert.Equal("Negotiate", headers.WwwAuthenticate.ToString()); in TryParseAdd_AddBadAfterGoodValue_False()
870 string result = response.Headers.WwwAuthenticate.ToString(); in ToString_SingleValue_Success()
882 string result = response.Headers.WwwAuthenticate.ToString(); in ToString_MultipleValue_Success()
[all …]
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-httpauth-0.6.0-beta.2/src/headers/www_authenticate/
H A Dheader.rs15 pub struct WwwAuthenticate<C: Challenge>(pub C); struct
17 impl<C: Challenge> Header for WwwAuthenticate<C> { implementation
27 impl<C: Challenge> IntoHeaderValue for WwwAuthenticate<C> { implementation
H A Dmod.rs9 pub use self::header::WwwAuthenticate;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/tests/
H A DHttpListenerAuthenticationTests.cs92 Assert.Equal("Basic realm=\"\"", response.Headers.WwwAuthenticate.ToString()); in BasicAuthentication_InvalidRequest_SendsStatusCodeClient()
96 Assert.Empty(response.Headers.WwwAuthenticate); in BasicAuthentication_InvalidRequest_SendsStatusCodeClient()
124 … Assert.Equal($"Basic realm=\"{realm}\"", response.Headers.WwwAuthenticate.ToString()); in BasicAuthentication_RealmSet_SendsChallengeToClient()
178 Assert.StartsWith("NTLM", message.Headers.WwwAuthenticate.ToString()); in NtlmAuthentication_Conversation_ReturnsExpectedType2Message()
204 Assert.Equal("NTLM", message.Headers.WwwAuthenticate.ToString()); in NtlmAuthentication_InvalidRequestHeaders_ReturnsExpectedStatusCode()
208 Assert.Empty(message.Headers.WwwAuthenticate); in NtlmAuthentication_InvalidRequestHeaders_ReturnsExpectedStatusCode()
224 Assert.StartsWith("Negotiate", message.Headers.WwwAuthenticate.ToString()); in NegotiateAuthentication_Conversation_ReturnsExpectedType2Message()
240 Assert.Empty(message.Headers.WwwAuthenticate); in NegotiateAuthentication_InvalidRequestHeaders_ReturnsExpectedStatusCode()
390 Assert.Empty(response.Headers.WwwAuthenticate); in Realm_SetWithoutBasicAuthenticationScheme_SendsNoChallengeToClient()
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-httpauth-0.6.0-beta.2/src/extractors/
H A Derrors.rs8 use crate::headers::www_authenticate::WwwAuthenticate;
57 .insert_header(WwwAuthenticate(self.challenge.clone())) in error_response()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/Managed/
H A DAuthenticateAndRedirectHandler.cs57 … AuthenticationHeaderValue selectedAuth = GetSupportedAuthScheme(response.Headers.WwwAuthenticate); in SendAsync()
73 … foreach (AuthenticationHeaderValue ahv in response.Headers.WwwAuthenticate) in SendAsync()
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack/src/ServiceStack.Common/Web/
H A DHttpHeaders.cs43 public const string WwwAuthenticate = "WWW-Authenticate"; field in ServiceStack.Common.Web.HttpHeaders
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DHttpResponseHeader.cs40 WwwAuthenticate = 29, // response-header [section 6.2] enumerator
H A D_AuthenticationState.cs72 … return IsProxyAuth ? HttpResponseHeader.ProxyAuthenticate : HttpResponseHeader.WwwAuthenticate;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebHeaderCollection/src/System/Net/
H A DHttpResponseHeader.cs39 WwwAuthenticate = 29, // response-header [section 6.2] enumerator
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/ReferenceSources/
H A DHttpApi.cs10 const int HttpHeaderResponseMaximum = (int)HttpResponseHeader.WwwAuthenticate + 1;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Net.Http/System.Net.Http.Headers/
H A DHttpResponseHeaders.cs199 public HttpHeaderValueCollection<AuthenticationHeaderValue> WwwAuthenticate { property in System.Net.Http.Headers.HttpResponseHeaders
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebHeaderCollection/ref/
H A DSystem.Net.WebHeaderCollection.cs86 WwwAuthenticate = 29, enumerator
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-httpauth-0.6.0-beta.2/
H A DCHANGES.md57 - `WWWAuthenticate` header struct was renamed into `WwwAuthenticate`
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/Headers/
H A DHttpResponseHeaders.cs76 public HttpHeaderValueCollection<AuthenticationHeaderValue> WwwAuthenticate => field in System.Net.Http.Headers.HttpResponseHeaders
/dports/devel/py-azure-cosmos/azure-cosmos-3.2.0/azure/cosmos/
H A Dhttp_constants.py72 WwwAuthenticate = 'Www-Authenticate' variable in HttpHeaders
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Net.Http/Test/System.Net.Http/
H A DHttpResponseMessageTest.cs97 headers.WwwAuthenticate.Add (new AuthenticationHeaderValue ("www", "par")); in Headers()
233 Assert.IsTrue (headers.WwwAuthenticate.SequenceEqual ( in Headers()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebHeaderCollection/tests/
H A DWebHeaderCollectionTest.cs83 w[HttpResponseHeader.WwwAuthenticate] = headerValue; in HttpResponseHeader_AddQuery_CommonHeader_Success()
86 Assert.Equal(headerValue, w[HttpResponseHeader.WwwAuthenticate]); in HttpResponseHeader_AddQuery_CommonHeader_Success()
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/gstreamer-rtsp-0.17.0/src/auto/
H A Denums.rs243 WwwAuthenticate, enumerator
393 Self::WwwAuthenticate => ffi::GST_RTSP_HDR_WWW_AUTHENTICATE, in into_glib()
493 ffi::GST_RTSP_HDR_WWW_AUTHENTICATE => Self::WwwAuthenticate, in from_glib()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/http-0.2.4/src/header/
H A Dname.rs915 (WwwAuthenticate, WWW_AUTHENTICATE, "www-authenticate");
1340 return Ok(WwwAuthenticate.into())
1605 b"www-authenticate" => Ok(WwwAuthenticate.into()),
/dports/dns/doh-proxy/doh-proxy-0.9.2/cargo-crates/http-0.2.4/src/header/
H A Dname.rs915 (WwwAuthenticate, WWW_AUTHENTICATE, "www-authenticate");
1340 return Ok(WwwAuthenticate.into())
1605 b"www-authenticate" => Ok(WwwAuthenticate.into()),
/dports/net/routinator/routinator-0.10.2/cargo-crates/http-0.2.4/src/header/
H A Dname.rs915 (WwwAuthenticate, WWW_AUTHENTICATE, "www-authenticate");
1340 return Ok(WwwAuthenticate.into())
1605 b"www-authenticate" => Ok(WwwAuthenticate.into()),
/dports/textproc/angle-grinder/angle-grinder-0.18.0/cargo-crates/http-0.2.4/src/header/
H A Dname.rs915 (WwwAuthenticate, WWW_AUTHENTICATE, "www-authenticate");
1340 return Ok(WwwAuthenticate.into())
1605 b"www-authenticate" => Ok(WwwAuthenticate.into()),
/dports/www/rearx/rearx-0.1.4/cargo-crates/http-0.2.3/src/header/
H A Dname.rs915 (WwwAuthenticate, WWW_AUTHENTICATE, "www-authenticate");
1340 return Ok(WwwAuthenticate.into())
1605 b"www-authenticate" => Ok(WwwAuthenticate.into()),

12345