Home
last modified time | relevance | path

Searched refs:RedirectUrl (Results 1 – 25 of 270) sorted by relevance

1234567891011

/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.WebPages.Test/Extensions/
H A DHttpContextExtensionsTest.cs16 public string RedirectUrl { get; set; } property in Microsoft.WebPages.Test.Helpers.HttpContextExtensionsTest.RedirectData
23 …=> context.Response.Redirect(It.IsAny<string>())).Callback((string url) => data.RedirectUrl = url); in GetContextForRedirectLocal()
33 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalWithNullGoesToRootTest()
42 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalWithEmptyStringGoesToRootTest()
51 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalWithNonLocalGoesToRootTest()
60 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalWithDifferentHostGoesToRootTest()
69 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalOnSameHostTest()
71 Assert.Equal("~/", data.RedirectUrl); in RedirectLocalOnSameHostTest()
80 Assert.Equal("/bar", data.RedirectUrl); in RedirectLocalRelativeTest()
82 Assert.Equal("/bar/hey.you", data.RedirectUrl); in RedirectLocalRelativeTest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Configuration/
H A DPassportAuthentication.cs117 public string RedirectUrl { property in System.Web.Configuration.PassportAuthentication
138 if (StringUtil.StringStartsWith(elem.RedirectUrl, "\\\\") || in Validate()
139 (elem.RedirectUrl.Length > 1 && elem.RedirectUrl[1] == ':')) { in Validate()
/dports/security/lego/lego-4.5.3/vendor/github.com/oracle/oci-go-sdk/waas/
H A Daccess_rule.go59 RedirectUrl *string `mandatory:"false" json:"redirectUrl"` member
95 RedirectUrl *string `json:"redirectUrl"`
127 m.RedirectUrl = model.RedirectUrl
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch_replicator/src/
H A Dcouch_replicator_httpc.erl430 RedirectUrl = redirect_url(Headers, Url),
431 {HttpDb2, Params2} = after_redirect(RedirectUrl, Code, HttpDb, Params),
464 after_redirect(RedirectUrl, 303, HttpDb, Params) ->
465 after_redirect(RedirectUrl, HttpDb, ?replace(Params, method, get));
466 after_redirect(RedirectUrl, _Code, HttpDb, Params) ->
467 after_redirect(RedirectUrl, HttpDb, Params).
469 after_redirect(RedirectUrl, HttpDb, Params) ->
471 {HttpDb#httpdb{url = RedirectUrl}, Params2}.
/dports/net/krill/krill-0.9.4/cargo-crates/oauth2-4.1.0/examples/
H A Dgithub.rs21 AuthUrl, AuthorizationCode, ClientId, ClientSecret, CsrfToken, RedirectUrl, Scope,
52 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
H A Dmsgraph.rs28 RedirectUrl, Scope, TokenUrl,
63 RedirectUrl::new("http://localhost:3003/redirect".to_string()) in main()
H A Dgoogle.rs20 AuthUrl, AuthorizationCode, ClientId, ClientSecret, CsrfToken, PkceCodeChallenge, RedirectUrl,
51 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
H A Dgithub_async.rs21 AuthUrl, AuthorizationCode, ClientId, ClientSecret, CsrfToken, RedirectUrl, Scope,
53 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
H A Dwunderlist.rs30 EmptyExtraTokenFields, ExtraTokenFields, RedirectUrl, RefreshToken, Scope, TokenResponse,
164 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
/dports/net/krill/krill-0.9.4/cargo-crates/openidconnect-2.1.0/src/
H A Dregistration.rs27 JsonWebKeySet, RedirectUrl, StandardErrorResponse,
90 pub fn new(redirect_uris: Vec<RedirectUrl>, additional_metadata: A) -> Self { in new() argument
129 set_redirect_uris -> redirect_uris[Vec<RedirectUrl>],
191 redirect_uris: Vec<RedirectUrl>,
448 pub fn new(redirect_uris: Vec<RedirectUrl>, additional_metadata: AC) -> Self { in new() argument
611 set_redirect_uris -> redirect_uris[Vec<RedirectUrl>],
737 redirect_uris: Vec<RedirectUrl>, in new() argument
787 set_redirect_uris -> redirect_uris[Vec<RedirectUrl>],
903 use oauth2::{ClientId, RedirectUrl};
967 RedirectUrl::new("https://example.com/redirect-1".to_string()).unwrap(), in test_metadata_serialization()
[all …]
H A Dlib.rs592 PkceCodeChallengeMethod, PkceCodeVerifier, RedirectUrl, RefreshToken, RefreshTokenRequest,
899 pub fn set_redirect_uri(mut self, redirect_url: RedirectUrl) -> Self { in set_redirect_uri()
1319 pub fn set_redirect_uri(mut self, redirect_url: Cow<'a, RedirectUrl>) -> Self { in set_redirect_uri()
1444 use oauth2::{AuthUrl, ClientId, ClientSecret, CsrfToken, RedirectUrl, Scope, TokenUrl};
1530 .set_redirect_uri(RedirectUrl::new("http://localhost:8888/".to_string()).unwrap()); in test_authorize_url_full()
1609 .set_redirect_uri(RedirectUrl::new("http://localhost:8888/".to_string()).unwrap()); in test_authorize_url_redirect_url_override()
1634 RedirectUrl::new("http://localhost:8888/alternative".to_string()).unwrap(), in test_authorize_url_redirect_url_override()
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/yesod-core-1.6.18/src/Yesod/Core/
H A DHandler.hs80 , RedirectUrl (..)
468 redirect :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
479 redirectWith :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
494 setUltDest :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
534 redirectUltDest :: (RedirectUrl (HandlerSite m) url, MonadHandler m)
1010 class RedirectUrl master a where constructor
1014 instance RedirectUrl master Text where
1017 instance RedirectUrl master String where
1020 instance RedirectUrl master (Route master) where
1041 instance (RedirectUrl master a, PathPiece b) => RedirectUrl master (Fragment a b) where
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/yesod-core-1.6.18/src/Yesod/Core/
H A DHandler.hs80 , RedirectUrl (..)
468 redirect :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
479 redirectWith :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
494 setUltDest :: (MonadHandler m, RedirectUrl (HandlerSite m) url)
534 redirectUltDest :: (RedirectUrl (HandlerSite m) url, MonadHandler m)
1010 class RedirectUrl master a where constructor
1014 instance RedirectUrl master Text where
1017 instance RedirectUrl master String where
1020 instance RedirectUrl master (Route master) where
1041 instance (RedirectUrl master a, PathPiece b) => RedirectUrl master (Fragment a b) where
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/okta/okta-sdk-golang/okta/
H A DautoLoginApplicationSettingsSignOn.go25 RedirectUrl string `json:"redirectUrl,omitempty"` member
/dports/security/vault/vault-1.8.2/vendor/github.com/okta/okta-sdk-golang/v2/okta/
H A DautoLoginApplicationSettingsSignOn.go25 RedirectUrl string `json:"redirectUrl,omitempty"` member
/dports/sysutils/helmfile/vault-f6547fa8e820/vendor/github.com/okta/okta-sdk-golang/okta/
H A DautoLoginApplicationSettingsSignOn.go25 RedirectUrl string `json:"redirectUrl,omitempty"` member
/dports/lang/fpc-utils/fpc-3.2.2/utils/fpdoc/
H A Ddw_htmlchm.inc292 RedirectUrl,Urls: String;
325 RedirectUrl:='';
327 RedirectUrl := UTF8Encode(ResolveLinkIDAbs(tmpElement.Parent.PathName))
329 RedirectUrl := UTF8Encode(ResolveLinkIDAbs(tmpElement.PathName));
331 if(trim(RedirectUrl)<>'') and (RedirectUrl<>urls) then
333 writeln('Hint: Index Resolved:',urls,' to ',RedirectUrl);
334 urls:=RedirectUrl;
/dports/lang/fpc-source/fpc-3.2.2/utils/fpdoc/
H A Ddw_htmlchm.inc292 RedirectUrl,Urls: String;
325 RedirectUrl:='';
327 RedirectUrl := UTF8Encode(ResolveLinkIDAbs(tmpElement.Parent.PathName))
329 RedirectUrl := UTF8Encode(ResolveLinkIDAbs(tmpElement.PathName));
331 if(trim(RedirectUrl)<>'') and (RedirectUrl<>urls) then
333 writeln('Hint: Index Resolved:',urls,' to ',RedirectUrl);
334 urls:=RedirectUrl;
/dports/net/krill/krill-0.9.4/cargo-crates/openidconnect-2.1.0/tests/rp_common/
H A Dmod.rs14 ClientContactEmail, ClientName, HttpRequest, HttpResponse, IssuerUrl, RedirectUrl,
145 vec![RedirectUrl::new(RP_REDIRECT_URI.to_string()).unwrap()], in register_client()
/dports/net/krill/krill-0.9.4/cargo-crates/openidconnect-2.1.0/examples/
H A Dgitlab.rs35 OAuth2TokenResponse, RedirectUrl, Scope,
88 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
H A Dgoogle.rs34 CsrfToken, IssuerUrl, Nonce, OAuth2TokenResponse, ProviderMetadata, RedirectUrl, RevocationUrl,
123 RedirectUrl::new("http://localhost:8080".to_string()).expect("Invalid redirect URL"), in main()
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/plugins/messageviewerconfigureplugins/scamsettings/
H A Dscamconfigureutils.cpp16 case MessageViewer::ScamDetectionInfo::ScamDetectionField::RedirectUrl: in convertEnumToString()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Configuration_2.0/
H A DPassportAuthentication.cs66 public string RedirectUrl { property in System.Web.Configuration.PassportAuthentication
/dports/net/messagelib/messagelib-21.12.3/messageviewer/src/scamdetection/
H A Dscamdetectioninfo.h22 RedirectUrl = 2, enumerator
/dports/net/krill/krill-0.9.4/cargo-crates/oauth2-4.1.0/src/
H A Dtests.rs245 .set_redirect_uri(RedirectUrl::new("https://localhost/redirect".to_string()).unwrap()); in test_authorize_url_with_redirect_url()
271 RedirectUrl::new("https://localhost/alternative".to_string()).unwrap(), in test_authorize_url_with_redirect_url_override()
637 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()); in test_exchange_code_successful_with_redirect_url()
685 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()); in test_exchange_code_successful_with_redirect_url_override()
690 RedirectUrl::new("https://redirect/alternative".to_string()).unwrap(), in test_exchange_code_successful_with_redirect_url_override()
736 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()); in test_exchange_code_successful_with_basic_auth()
784 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()); in test_exchange_code_successful_with_pkce_and_extension()
840 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()); in test_exchange_refresh_token_successful_with_extension()
1620 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()) in test_token_introspection_successful_with_basic_auth_minimal_response()
1671 .set_redirect_uri(RedirectUrl::new("https://redirect/here".to_string()).unwrap()) in test_token_introspection_successful_with_basic_auth_full_response()
[all …]

1234567891011