Microsoft.Owin.Security.MicrosoftAccount.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Owin.Security.MicrosoftAccount</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider">
  8. <summary>指定回调方法,<see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware" /> 调用这些方法使开发人员可以控制身份验证过程。/&amp;amp;gt;</summary>
  9. </member>
  10. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider.ApplyRedirect(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext)">
  11. <summary>在质询导致重定向到 Microsoft 中间件中的授权终结点时调用</summary>
  12. <param name="context">包含质询的重定向 URI 和 <see cref="T:Microsoft.Owin.Security.AuthenticationProperties" /></param>
  13. </member>
  14. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider.Authenticated(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext)">
  15. <summary>当 Microsoft 成功对用户进行身份验证时调用</summary>
  16. <returns>表示已完成的操作的 <see cref="T:System.Threading.Tasks.Task" />。</returns>
  17. <param name="context">包含登录会话及用户 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 的相关信息。</param>
  18. </member>
  19. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext)">
  20. <summary>在 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 保存到本地 Cookie 中且浏览器重定向到最初请求的 URL 之前调用。</summary>
  21. <returns>表示已完成的操作的 <see cref="T:System.Threading.Tasks.Task" />。</returns>
  22. </member>
  23. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext">
  24. <summary>在质询导致重定向到 Microsoft 帐户中间件中的授权终结点时传递上下文</summary>
  25. </member>
  26. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions,Microsoft.Owin.Security.AuthenticationProperties,System.String)">
  27. <summary>创建新的上下文对象。</summary>
  28. <param name="context">OWIN 请求上下文</param>
  29. <param name="options">Microsoft 帐户中间件选项</param>
  30. <param name="properties">质询的身份验证属性</param>
  31. <param name="redirectUri">初始重定向 URI</param>
  32. </member>
  33. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext.Properties">
  34. <summary>获取质询的身份验证属性</summary>
  35. </member>
  36. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext.RedirectUri">
  37. <summary>获取用于重定向操作的 URI。</summary>
  38. </member>
  39. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext">
  40. <summary>包含登录会话及用户 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 的相关信息。</summary>
  41. </member>
  42. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.#ctor(Microsoft.Owin.IOwinContext,Newtonsoft.Json.Linq.JObject,System.String,System.String,System.String)">
  43. <summary>初始化 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext" /></summary>
  44. <param name="context">OWIN 环境</param>
  45. <param name="user">JSON 序列化的用户</param>
  46. <param name="accessToken">由 Microsoft 身份验证服务提供的访问令牌</param>
  47. <param name="refreshToken">由 Microsoft 身份验证服务提供的刷新令牌</param>
  48. <param name="expires">距过期的秒数</param>
  49. </member>
  50. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.AccessToken">
  51. <summary>获取由 Microsoft 身份验证服务提供的访问令牌</summary>
  52. </member>
  53. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Email">
  54. <summary>获取用户的电子邮件地址</summary>
  55. </member>
  56. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.ExpiresIn">
  57. <summary>获取 Microsoft 访问令牌过期时间</summary>
  58. </member>
  59. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.FirstName">
  60. <summary>获取用户的名字</summary>
  61. </member>
  62. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Id">
  63. <summary>获取 Microsoft 帐户用户 ID</summary>
  64. </member>
  65. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Identity">
  66. <summary>获取用于表示用户的 <see cref="T:System.Security.Claims.ClaimsIdentity" /></summary>
  67. </member>
  68. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.LastName">
  69. <summary>获取用户的姓氏</summary>
  70. </member>
  71. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Name">
  72. <summary>获取用户名</summary>
  73. </member>
  74. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Properties">
  75. <summary>获取或设置常见身份验证属性的属性包</summary>
  76. </member>
  77. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.RefreshToken">
  78. <summary>获取由 Microsoft 身份验证服务提供的刷新令牌</summary>
  79. </member>
  80. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.User">
  81. <summary>获取 JSON 序列化的用户</summary>
  82. </member>
  83. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware">
  84. <summary>使用 Microsoft 帐户服务对用户进行身份验证的 OWIN 中间件</summary>
  85. </member>
  86. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions)">
  87. <summary>初始化 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware" /></summary>
  88. <param name="next">OWIN 管道中要调用的下一个中间件</param>
  89. <param name="app">OWIN 应用程序</param>
  90. <param name="options">中间件的配置选项</param>
  91. </member>
  92. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware.CreateHandler">
  93. <summary>提供用于处理身份验证相关请求的 <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler" /> 对象。</summary>
  94. <returns>配置了提供给构造函数的 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions" /> 的 <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler" />。</returns>
  95. </member>
  96. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions">
  97. <summary>
  98. <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware" /> 的配置选项</summary>
  99. </member>
  100. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.#ctor">
  101. <summary>初始化新的 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions" />。</summary>
  102. </member>
  103. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelCertificateValidator">
  104. <summary>获取或设置要用于验证在属于 Microsoft 帐户的返回通道通信中使用的终结点的固定证书验证程序。</summary>
  105. <returns>固定证书验证程序。</returns>
  106. </member>
  107. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelHttpHandler">
  108. <summary>用于与 Microsoft 通信的 HttpMessageHandler。除非值可以向下转换为 WebRequestHandler,否则不能在设置 BackchannelCertificateValidator 的同时设置此项。</summary>
  109. </member>
  110. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelTimeout">
  111. <summary>获取或设置与 Microsoft 进行的返回通道通信的超时值(以毫秒为单位)。</summary>
  112. <returns>返回通道超时值。</returns>
  113. </member>
  114. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.CallbackPath">
  115. <summary>应用程序的基路径内将返回用户代理的请求路径。此请求到达时,中间件将处理此请求。默认值为“/signin-microsoft”。</summary>
  116. </member>
  117. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Caption">
  118. <summary>获取或设置用户可以在登录用户界面上显示的文本。</summary>
  119. </member>
  120. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.ClientId">
  121. <summary>由 Microsoft 身份验证服务分配的应用程序客户端 ID。</summary>
  122. </member>
  123. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.ClientSecret">
  124. <summary>由 Microsoft 身份验证服务分配的应用程序客户端机密。</summary>
  125. </member>
  126. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Provider">
  127. <summary>获取或设置用于处理身份验证事件的 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider" />。</summary>
  128. </member>
  129. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Scope">
  130. <summary>要请求的权限列表。</summary>
  131. </member>
  132. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.SignInAsAuthenticationType">
  133. <summary>获取或设置将负责实际颁发用户 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 的其他身份验证中间件的名称。</summary>
  134. </member>
  135. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.StateDataFormat">
  136. <summary>获取或设置用于保护由中间件处理的数据的类型。</summary>
  137. </member>
  138. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider">
  139. <summary>默认 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider" /> 实现。</summary>
  140. </member>
  141. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.#ctor">
  142. <summary>初始化新的 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider" /></summary>
  143. </member>
  144. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.ApplyRedirect(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountApplyRedirectContext)">
  145. <summary>在质询导致重定向到 Microsoft 帐户中间件中的授权终结点时调用</summary>
  146. <param name="context">包含质询的重定向 URI 和 <see cref="T:Microsoft.Owin.Security.AuthenticationProperties" /></param>
  147. </member>
  148. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.Authenticated(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext)">
  149. <summary>当 Microsoft 成功对用户进行身份验证时调用</summary>
  150. <returns>表示已完成的操作的 <see cref="T:System.Threading.Tasks.Task" />。</returns>
  151. <param name="context">包含登录会话及用户 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 的相关信息。</param>
  152. </member>
  153. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.OnApplyRedirect">
  154. <summary>获取或设置调用 ApplyRedirect 方法时调用的委托。</summary>
  155. </member>
  156. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.OnAuthenticated">
  157. <summary>获取或设置调用 Authenticated 方法时调用的函数。</summary>
  158. </member>
  159. <member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.OnReturnEndpoint">
  160. <summary>获取或设置调用 ReturnEndpoint 方法时调用的函数。</summary>
  161. </member>
  162. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext)">
  163. <summary>在 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 保存到本地 Cookie 中且浏览器重定向到最初请求的 URL 之前调用。</summary>
  164. <returns>表示已完成的操作的 <see cref="T:System.Threading.Tasks.Task" />。</returns>
  165. <param name="context">包含登录会话及用户 <see cref="T:System.Security.Claims.ClaimsIdentity" /> 的相关信息</param>
  166. </member>
  167. <member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext">
  168. <summary>向中间件提供程序提供上下文信息。</summary>
  169. </member>
  170. <member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)">
  171. <summary>初始化新的 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext" />。</summary>
  172. <param name="context">OWIN 环境</param>
  173. <param name="ticket">身份验证票证</param>
  174. </member>
  175. <member name="T:Owin.MicrosoftAccountAuthenticationExtensions">
  176. <summary>使用 <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware" /> 的扩展方法</summary>
  177. </member>
  178. <member name="M:Owin.MicrosoftAccountAuthenticationExtensions.UseMicrosoftAccountAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions)">
  179. <summary>使用 Microsoft 帐户对用户进行身份验证</summary>
  180. <returns>已更新的 <see cref="T:Owin.IAppBuilder" /></returns>
  181. <param name="app">传递给配置方法的 <see cref="T:Owin.IAppBuilder" /></param>
  182. <param name="options">中间件配置选项</param>
  183. </member>
  184. <member name="M:Owin.MicrosoftAccountAuthenticationExtensions.UseMicrosoftAccountAuthentication(Owin.IAppBuilder,System.String,System.String)">
  185. <summary>使用 Microsoft 帐户对用户进行身份验证</summary>
  186. <param name="app">传递给配置方法的 <see cref="T:Owin.IAppBuilder" /></param>
  187. <param name="clientId">由 Microsoft 身份验证服务分配的应用程序客户端 ID</param>
  188. <param name="clientSecret">由 Microsoft 身份验证服务分配的应用程序客户端机密</param>
  189. </member>
  190. </members>
  191. </doc>