dotnet-core/release-notes/3.0/api-diff/Asp.Net/3.0.0_Microsoft.AspNetCore.Authentication.MicrosoftAccount.md
2019-10-10 13:57:00 -07:00

1.5 KiB

Microsoft.AspNetCore.Authentication.MicrosoftAccount

 {
     namespace Microsoft.AspNetCore.Authentication.MicrosoftAccount {
         public class MicrosoftAccountHandler : OAuthHandler<MicrosoftAccountOptions> {
+            protected override string BuildChallengeUrl(AuthenticationProperties properties, string redirectUri);
         }
+        public class MicrosoftChallengeProperties : OAuthChallengeProperties {
+            public static readonly string DomainHintKey;
+            public static readonly string LoginHintKey;
+            public static readonly string PromptKey;
+            public static readonly string ResponseModeKey;
+            public MicrosoftChallengeProperties();
+            public MicrosoftChallengeProperties(IDictionary<string, string> items);
+            public MicrosoftChallengeProperties(IDictionary<string, string> items, IDictionary<string, object> parameters);
+            public string DomainHint { get; set; }
+            public string LoginHint { get; set; }
+            public string Prompt { get; set; }
+            public string ResponseMode { get; set; }
+        }
     }
-    namespace Microsoft.AspNetCore.Builder {
 {
-        public static class MicrosoftAccountAppBuilderExtensions {
 {
-            public static IApplicationBuilder UseMicrosoftAccountAuthentication(this IApplicationBuilder app);

-            public static IApplicationBuilder UseMicrosoftAccountAuthentication(this IApplicationBuilder app, MicrosoftAccountOptions options);

-        }
-    }
 }