24 references to SetParameter
Microsoft.AspNetCore.Authentication.Core.Test (6)
AuthenticationPropertiesTests.cs (6)
117props.SetParameter<string>("foo", "foo bar"); 122props.SetParameter<string?>("foo", null); 135props.SetParameter<int?>("foo", 123); 140props.SetParameter<int?>("foo", null); 154props.SetParameter<ICollection<string>>("foo", list); 159props.SetParameter<ICollection<string>?>("foo", null);
Microsoft.AspNetCore.Authentication.Google (5)
GoogleChallengeProperties.cs (5)
66set => SetParameter(AccessTypeKey, value); 75set => SetParameter(ApprovalPromptKey, value); 84set => SetParameter(IncludeGrantedScopesKey, value); 93set => SetParameter(LoginHintKey, value); 102set => SetParameter(PromptParameterKey, value);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (4)
MicrosoftChallengeProperties.cs (4)
65set => SetParameter(ResponseModeKey, value); 78set => SetParameter(DomainHintKey, value); 90set => SetParameter(LoginHintKey, value); 102set => SetParameter(PromptKey, value);
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthChallengeProperties.cs (1)
44set => SetParameter(ScopeKey, value);
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectChallengeProperties.cs (2)
52set => SetParameter(MaxAgeKey, value); 61set => SetParameter(PromptKey, value);
Microsoft.AspNetCore.Authentication.Test (6)
FacebookTests.cs (1)
196properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
MicrosoftAccountTests.cs (1)
389properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
OAuthTests.cs (1)
267properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
OpenIdConnect\OpenIdConnectChallengeTests.cs (3)
571properties.SetParameter(OpenIdConnectChallengeProperties.PromptKey, "login"); 619properties.SetParameter(OpenIdConnectChallengeProperties.ScopeKey, new string[] { "baz", "qux" }); 665properties.SetParameter(OpenIdConnectChallengeProperties.MaxAgeKey, TimeSpan.FromSeconds(1234));