Yi.Framework.AspNetCore.Authentication.OAuth.xml
15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?xml version="1.0"?>
<doc>
<assembly>
<name>Yi.Framework.AspNetCore.Authentication.OAuth</name>
</assembly>
<members>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationConstants">
<summary>
Contains constants specific to the <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/>.
</summary>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults">
<summary>
Default values used by the Gitee authentication middleware.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.AuthenticationScheme">
<summary>
Default value for <see cref="!:AuthenticationScheme.Name"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.DisplayName">
<summary>
Default value for <see cref="!:AuthenticationScheme.DisplayName"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.Issuer">
<summary>
Default value for <see cref="!:AuthenticationSchemeOptions.ClaimsIssuer"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.CallbackPath">
<summary>
Default value for <see cref="!:RemoteAuthenticationOptions.CallbackPath"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.AuthorizationEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.AuthorizationEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.TokenEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.TokenEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.UserInformationEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.UserInformationEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationDefaults.UserEmailsEndpoint">
<summary>
Default value for <see cref="P:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions.UserEmailsEndpoint"/>.
</summary>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationExtensions">
<summary>
Extension methods to add Gitee authentication capabilities to an HTTP application pipeline.
</summary>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationExtensions.AddGitee(Microsoft.AspNetCore.Authentication.AuthenticationBuilder)">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables Gitee authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationExtensions.AddGitee(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables Gitee authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="configuration">The delegate used to configure the OpenID 2.0 options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationExtensions.AddGitee(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.String,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables Gitee authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="scheme">The authentication scheme associated with this instance.</param>
<param name="configuration">The delegate used to configure the Gitee options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationExtensions.AddGitee(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.String,System.String,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables Gitee authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="scheme">The authentication scheme associated with this instance.</param>
<param name="caption">The optional display name associated with this instance.</param>
<param name="configuration">The delegate used to configure the Gitee options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions">
<summary>
Defines a set of options used by <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationHandler"/>.
</summary>
</member>
<member name="P:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthenticationOptions.UserEmailsEndpoint">
<summary>
Gets or sets the address of the endpoint exposing
the email addresses associated with the logged in user.
</summary>
</member>
<member name="P:Yi.Framework.AspNetCore.Authentication.OAuth.Gitee.GiteeAuthticationcationUserInfoResponse.id">
<summary>
也可以等于openId
</summary>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.OauthAuthenticationHandler`1.TicketConver(System.Collections.Generic.List{System.Security.Claims.Claim})">
<summary>
生成认证票据
</summary>
<returns></returns>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationConstants">
<summary>
Contains constants specific to the <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/>.
</summary>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults">
<summary>
Default values for QQ authentication.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.AuthenticationScheme">
<summary>
Default value for <see cref="!:AuthenticationScheme.Name"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.DisplayName">
<summary>
Default value for <see cref="!:AuthenticationScheme.DisplayName"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.Issuer">
<summary>
Default value for <see cref="!:AuthenticationSchemeOptions.ClaimsIssuer"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.CallbackPath">
<summary>
Default value for <see cref="!:RemoteAuthenticationOptions.CallbackPath"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.AuthorizationEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.AuthorizationEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.TokenEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.TokenEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.UserIdentificationEndpoint">
<summary>
Default value for <see cref="P:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions.UserIdentificationEndpoint"/>.
</summary>
</member>
<member name="F:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationDefaults.UserInformationEndpoint">
<summary>
Default value for <see cref="!:OAuthOptions.UserInformationEndpoint"/>.
</summary>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationExtensions">
<summary>
Extension methods to add QQ authentication capabilities to an HTTP application pipeline.
</summary>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationExtensions.AddQQ(Microsoft.AspNetCore.Authentication.AuthenticationBuilder)">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables QQ authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationExtensions.AddQQ(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables QQ authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="configuration">The delegate used to configure the OpenID 2.0 options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationExtensions.AddQQ(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.String,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables QQ authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="scheme">The authentication scheme associated with this instance.</param>
<param name="configuration">The delegate used to configure the QQ options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="M:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationExtensions.AddQQ(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.String,System.String,System.Action{Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions})">
<summary>
Adds <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/> to the specified
<see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>, which enables QQ authentication capabilities.
</summary>
<param name="builder">The authentication builder.</param>
<param name="scheme">The authentication scheme associated with this instance.</param>
<param name="caption">The optional display name associated with this instance.</param>
<param name="configuration">The delegate used to configure the QQ options.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationBuilder"/>.</returns>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions">
<summary>
Defines a set of options used by <see cref="T:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationHandler"/>.
</summary>
</member>
<member name="P:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions.ApplyForUnionId">
<summary>
Gets or sets if the union Id (the primary key of an owner for different apps of the QQ platform) should be put into the user claims.
</summary>
</member>
<member name="P:Yi.Framework.AspNetCore.Authentication.OAuth.QQ.QQAuthenticationOptions.UserIdentificationEndpoint">
<summary>
Gets or sets the URL of the user identification endpoint (a.k.a. the "OpenID endpoint").
</summary>
</member>
<member name="T:Yi.Framework.AspNetCore.Authentication.OAuth.YiFrameworkAspNetCoreAuthenticationOAuthModule">
<summary>
本模块轮子来自 AspNet.Security.OAuth.QQ;
</summary>
</member>
</members>
</doc>