You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1064 lines
51 KiB

4 years ago
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNet.Identity.EntityFramework</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1">
  8. <summary>
  9. EntityFramework based implementation
  10. </summary>
  11. <typeparam name="TRole"></typeparam>
  12. </member>
  13. <member name="T:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3">
  14. <summary>
  15. EntityFramework based implementation
  16. </summary>
  17. <typeparam name="TRole"></typeparam>
  18. <typeparam name="TKey"></typeparam>
  19. <typeparam name="TUserRole"></typeparam>
  20. </member>
  21. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.#ctor(System.Data.Entity.DbContext)">
  22. <summary>
  23. Constructor which takes a db context and wires up the stores with default instances using the context
  24. </summary>
  25. <param name="context"></param>
  26. </member>
  27. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.FindByIdAsync(`1)">
  28. <summary>
  29. Find a role by id
  30. </summary>
  31. <param name="roleId"></param>
  32. <returns></returns>
  33. </member>
  34. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.FindByNameAsync(System.String)">
  35. <summary>
  36. Find a role by name
  37. </summary>
  38. <param name="roleName"></param>
  39. <returns></returns>
  40. </member>
  41. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.CreateAsync(`0)">
  42. <summary>
  43. Insert an entity
  44. </summary>
  45. <param name="role"></param>
  46. </member>
  47. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.DeleteAsync(`0)">
  48. <summary>
  49. Mark an entity for deletion
  50. </summary>
  51. <param name="role"></param>
  52. </member>
  53. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.UpdateAsync(`0)">
  54. <summary>
  55. Update an entity
  56. </summary>
  57. <param name="role"></param>
  58. </member>
  59. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Dispose">
  60. <summary>
  61. Dispose the store
  62. </summary>
  63. </member>
  64. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Dispose(System.Boolean)">
  65. <summary>
  66. If disposing, calls dispose on the Context. Always nulls out the Context
  67. </summary>
  68. <param name="disposing"></param>
  69. </member>
  70. <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Context">
  71. <summary>
  72. Context for the store
  73. </summary>
  74. </member>
  75. <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.DisposeContext">
  76. <summary>
  77. If true will call dispose on the DbContext during Dipose
  78. </summary>
  79. </member>
  80. <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Roles">
  81. <summary>
  82. Returns an IQueryable of users
  83. </summary>
  84. </member>
  85. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1.#ctor">
  86. <summary>
  87. Constructor
  88. </summary>
  89. </member>
  90. <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1.#ctor(System.Data.Entity.DbContext)">
  91. <summary>
  92. Constructor
  93. </summary>
  94. <param name="context"></param>
  95. </member>
  96. <member name="T:Microsoft.AspNet.Identity.EntityFramework.UserStore`1">
  97. <summary>
  98. EntityFramework based user store implementation that supports IUserStore, IUserLoginStore, IUserClaimStore and
  99. IUserRoleStore
  100. </summary>
  101. <typeparam name="TUser"></typeparam>
  102. </member>
  103. <member name="T:Microsoft.AspNet.Identity.EntityFramework.UserStore`6">
  104. <summary>
  105. EntityFramework based user store implementation that supports IUserStore, IUserLoginStore, IUserClaimStore and
  106. IUserRoleStore
  107. </summary>
  108. <typeparam name="TUser"></typeparam>
  109. <typeparam name="TRole"></typeparam>
  110. <typeparam name="TKey"></typeparam>
  111. <typeparam name="TUserLogin"></typeparam>
  112. <typeparam name="TUserRole"></typeparam>
  113. <typeparam name="TUserClaim"></typeparam>
  114. </member>
  115. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.#ctor(System.Data.Entity.DbContext)">
  116. <summary>
  117. Constructor which takes a db context and wires up the stores with default instances using the context
  118. </summary>
  119. <param name="context"></param>
  120. </member>
  121. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetClaimsAsync(`0)">
  122. <summary>
  123. Return the claims for a user
  124. </summary>
  125. <param name="user"></param>
  126. <returns></returns>
  127. </member>
  128. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddClaimAsync(`0,System.Security.Claims.Claim)">
  129. <summary>
  130. Add a claim to a user
  131. </summary>
  132. <param name="user"></param>
  133. <param name="claim"></param>
  134. <returns></returns>
  135. </member>
  136. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveClaimAsync(`0,System.Security.Claims.Claim)">
  137. <summary>
  138. Remove a claim from a user
  139. </summary>
  140. <param name="user"></param>
  141. <param name="claim"></param>
  142. <returns></returns>
  143. </member>
  144. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetEmailConfirmedAsync(`0)">
  145. <summary>
  146. Returns whether the user email is confirmed
  147. </summary>
  148. <param name="user"></param>
  149. <returns></returns>
  150. </member>
  151. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetEmailConfirmedAsync(`0,System.Boolean)">
  152. <summary>
  153. Set IsConfirmed on the user
  154. </summary>
  155. <param name="user"></param>
  156. <param name="confirmed"></param>
  157. <returns></returns>
  158. </member>
  159. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetEmailAsync(`0,System.String)">
  160. <summary>
  161. Set the user email
  162. </summary>
  163. <param name="user"></param>
  164. <param name="email"></param>
  165. <returns></returns>
  166. </member>
  167. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetEmailAsync(`0)">
  168. <summary>
  169. Get the user's email
  170. </summary>
  171. <param name="user"></param>
  172. <returns></returns>
  173. </member>
  174. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByEmailAsync(System.String)">
  175. <summary>
  176. Find a user by email
  177. </summary>
  178. <param name="email"></param>
  179. <returns></returns>
  180. </member>
  181. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLockoutEndDateAsync(`0)">
  182. <summary>
  183. Returns the DateTimeOffset that represents the end of a user's lockout, any time in the past should be considered
  184. not locked out.
  185. </summary>
  186. <param name="user"></param>
  187. <returns></returns>
  188. </member>
  189. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetLockoutEndDateAsync(`0,System.DateTimeOffset)">
  190. <summary>
  191. Locks a user out until the specified end date (set to a past date, to unlock a user)
  192. </summary>
  193. <param name="user"></param>
  194. <param name="lockoutEnd"></param>
  195. <returns></returns>
  196. </member>
  197. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.IncrementAccessFailedCountAsync(`0)">
  198. <summary>
  199. Used to record when an attempt to access the user has failed
  200. </summary>
  201. <param name="user"></param>
  202. <returns></returns>
  203. </member>
  204. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.ResetAccessFailedCountAsync(`0)">
  205. <summary>
  206. Used to reset the account access count, typically after the account is successfully accessed
  207. </summary>
  208. <param name="user"></param>
  209. <returns></returns>
  210. </member>
  211. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetAccessFailedCountAsync(`0)">
  212. <summary>
  213. Returns the current number of failed access attempts. This number usually will be reset whenever the password is
  214. verified or the account is locked out.
  215. </summary>
  216. <param name="user"></param>
  217. <returns></returns>
  218. </member>
  219. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLockoutEnabledAsync(`0)">
  220. <summary>
  221. Returns whether the user can be locked out.
  222. </summary>
  223. <param name="user"></param>
  224. <returns></returns>
  225. </member>
  226. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetLockoutEnabledAsync(`0,System.Boolean)">
  227. <summary>
  228. Sets whether the user can be locked out.
  229. </summary>
  230. <param name="user"></param>
  231. <param name="enabled"></param>
  232. <returns></returns>
  233. </member>
  234. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByIdAsync(`2)">
  235. <summary>
  236. Find a user by id
  237. </summary>
  238. <param name="userId"></param>
  239. <returns></returns>
  240. </member>
  241. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByNameAsync(System.String)">
  242. <summary>
  243. Find a user by name
  244. </summary>
  245. <param name="userName"></param>
  246. <returns></returns>
  247. </member>
  248. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.CreateAsync(`0)">
  249. <summary>
  250. Insert an entity
  251. </summary>
  252. <param name="user"></param>
  253. </member>
  254. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.DeleteAsync(`0)">
  255. <summary>
  256. Mark an entity for deletion
  257. </summary>
  258. <param name="user"></param>
  259. </member>
  260. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.UpdateAsync(`0)">
  261. <summary>
  262. Update an entity
  263. </summary>
  264. <param name="user"></param>
  265. </member>
  266. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Dispose">
  267. <summary>
  268. Dispose the store
  269. </summary>
  270. </member>
  271. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindAsync(Microsoft.AspNet.Identity.UserLoginInfo)">
  272. <summary>
  273. Returns the user associated with this login
  274. </summary>
  275. <returns></returns>
  276. </member>
  277. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddLoginAsync(`0,Microsoft.AspNet.Identity.UserLoginInfo)">
  278. <summary>
  279. Add a login to the user
  280. </summary>
  281. <param name="user"></param>
  282. <param name="login"></param>
  283. <returns></returns>
  284. </member>
  285. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveLoginAsync(`0,Microsoft.AspNet.Identity.UserLoginInfo)">
  286. <summary>
  287. Remove a login from a user
  288. </summary>
  289. <param name="user"></param>
  290. <param name="login"></param>
  291. <returns></returns>
  292. </member>
  293. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLoginsAsync(`0)">
  294. <summary>
  295. Get the logins for a user
  296. </summary>
  297. <param name="user"></param>
  298. <returns></returns>
  299. </member>
  300. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPasswordHashAsync(`0,System.String)">
  301. <summary>
  302. Set the password hash for a user
  303. </summary>
  304. <param name="user"></param>
  305. <param name="passwordHash"></param>
  306. <returns></returns>
  307. </member>
  308. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPasswordHashAsync(`0)">
  309. <summary>
  310. Get the password hash for a user
  311. </summary>
  312. <param name="user"></param>
  313. <returns></returns>
  314. </member>
  315. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.HasPasswordAsync(`0)">
  316. <summary>
  317. Returns true if the user has a password set
  318. </summary>
  319. <param name="user"></param>
  320. <returns></returns>
  321. </member>
  322. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPhoneNumberAsync(`0,System.String)">
  323. <summary>
  324. Set the user's phone number
  325. </summary>
  326. <param name="user"></param>
  327. <param name="phoneNumber"></param>
  328. <returns></returns>
  329. </member>
  330. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPhoneNumberAsync(`0)">
  331. <summary>
  332. Get a user's phone number
  333. </summary>
  334. <param name="user"></param>
  335. <returns></returns>
  336. </member>
  337. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPhoneNumberConfirmedAsync(`0)">
  338. <summary>
  339. Returns whether the user phoneNumber is confirmed
  340. </summary>
  341. <param name="user"></param>
  342. <returns></returns>
  343. </member>
  344. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPhoneNumberConfirmedAsync(`0,System.Boolean)">
  345. <summary>
  346. Set PhoneNumberConfirmed on the user
  347. </summary>
  348. <param name="user"></param>
  349. <param name="confirmed"></param>
  350. <returns></returns>
  351. </member>
  352. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddToRoleAsync(`0,System.String)">
  353. <summary>
  354. Add a user to a role
  355. </summary>
  356. <param name="user"></param>
  357. <param name="roleName"></param>
  358. <returns></returns>
  359. </member>
  360. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveFromRoleAsync(`0,System.String)">
  361. <summary>
  362. Remove a user from a role
  363. </summary>
  364. <param name="user"></param>
  365. <param name="roleName"></param>
  366. <returns></returns>
  367. </member>
  368. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetRolesAsync(`0)">
  369. <summary>
  370. Get the names of the roles a user is a member of
  371. </summary>
  372. <param name="user"></param>
  373. <returns></returns>
  374. </member>
  375. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.IsInRoleAsync(`0,System.String)">
  376. <summary>
  377. Returns true if the user is in the named role
  378. </summary>
  379. <param name="user"></param>
  380. <param name="roleName"></param>
  381. <returns></returns>
  382. </member>
  383. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetSecurityStampAsync(`0,System.String)">
  384. <summary>
  385. Set the security stamp for the user
  386. </summary>
  387. <param name="user"></param>
  388. <param name="stamp"></param>
  389. <returns></returns>
  390. </member>
  391. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetSecurityStampAsync(`0)">
  392. <summary>
  393. Get the security stamp for a user
  394. </summary>
  395. <param name="user"></param>
  396. <returns></returns>
  397. </member>
  398. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetTwoFactorEnabledAsync(`0,System.Boolean)">
  399. <summary>
  400. Set whether two factor authentication is enabled for the user
  401. </summary>
  402. <param name="user"></param>
  403. <param name="enabled"></param>
  404. <returns></returns>
  405. </member>
  406. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetTwoFactorEnabledAsync(`0)">
  407. <summary>
  408. Gets whether two factor authentication is enabled for the user
  409. </summary>
  410. <param name="user"></param>
  411. <returns></returns>
  412. </member>
  413. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetUserAggregateAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
  414. <summary>
  415. Used to attach child entities to the User aggregate, i.e. Roles, Logins, and Claims
  416. </summary>
  417. <param name="filter"></param>
  418. <returns></returns>
  419. </member>
  420. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Dispose(System.Boolean)">
  421. <summary>
  422. If disposing, calls dispose on the Context. Always nulls out the Context
  423. </summary>
  424. <param name="disposing"></param>
  425. </member>
  426. <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Context">
  427. <summary>
  428. Context for the store
  429. </summary>
  430. </member>
  431. <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.DisposeContext">
  432. <summary>
  433. If true will call dispose on the DbContext during Dispose
  434. </summary>
  435. </member>
  436. <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AutoSaveChanges">
  437. <summary>
  438. If true will call SaveChanges after Create/Update/Delete
  439. </summary>
  440. </member>
  441. <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Users">
  442. <summary>
  443. Returns an IQueryable of users
  444. </summary>
  445. </member>
  446. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.#ctor">
  447. <summary>
  448. Default constuctor which uses a new instance of a default EntityyDbContext
  449. </summary>
  450. </member>
  451. <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.#ctor(System.Data.Entity.DbContext)">
  452. <summary>
  453. Constructor
  454. </summary>
  455. <param name="context"></param>
  456. </member>
  457. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole">
  458. <summary>
  459. EntityType that represents a user belonging to a role
  460. </summary>
  461. </member>
  462. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1">
  463. <summary>
  464. EntityType that represents a user belonging to a role
  465. </summary>
  466. <typeparam name="TKey"></typeparam>
  467. </member>
  468. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1.UserId">
  469. <summary>
  470. UserId for the user that is in the role
  471. </summary>
  472. </member>
  473. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1.RoleId">
  474. <summary>
  475. RoleId for the role
  476. </summary>
  477. </member>
  478. <member name="T:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1">
  479. <summary>
  480. EntityFramework based IIdentityEntityStore that allows query/manipulation of a TEntity set
  481. </summary>
  482. <typeparam name="TEntity">Concrete entity type, i.e .User</typeparam>
  483. </member>
  484. <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.#ctor(System.Data.Entity.DbContext)">
  485. <summary>
  486. Constructor that takes a Context
  487. </summary>
  488. <param name="context"></param>
  489. </member>
  490. <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.GetByIdAsync(System.Object)">
  491. <summary>
  492. FindAsync an entity by ID
  493. </summary>
  494. <param name="id"></param>
  495. <returns></returns>
  496. </member>
  497. <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Create(`0)">
  498. <summary>
  499. Insert an entity
  500. </summary>
  501. <param name="entity"></param>
  502. </member>
  503. <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Delete(`0)">
  504. <summary>
  505. Mark an entity for deletion
  506. </summary>
  507. <param name="entity"></param>
  508. </member>
  509. <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Update(`0)">
  510. <summary>
  511. Update an entity
  512. </summary>
  513. <param name="entity"></param>
  514. </member>
  515. <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Context">
  516. <summary>
  517. Context for the store
  518. </summary>
  519. </member>
  520. <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.EntitySet">
  521. <summary>
  522. Used to query the entities
  523. </summary>
  524. </member>
  525. <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.DbEntitySet">
  526. <summary>
  527. EntitySet for this store
  528. </summary>
  529. </member>
  530. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext">
  531. <summary>
  532. Default IdentityDbContext that uses the default entity types for ASP.NET Identity Users, Roles, Claims, Logins.
  533. Use this overload to add your own entity types.
  534. </summary>
  535. </member>
  536. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6">
  537. <summary>
  538. Generic IdentityDbContext base that can be customized with entity types that extend from the base IdentityUserXXX types.
  539. </summary>
  540. <typeparam name="TUser"></typeparam>
  541. <typeparam name="TRole"></typeparam>
  542. <typeparam name="TKey"></typeparam>
  543. <typeparam name="TUserLogin"></typeparam>
  544. <typeparam name="TUserRole"></typeparam>
  545. <typeparam name="TUserClaim"></typeparam>
  546. </member>
  547. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor">
  548. <summary>
  549. Default constructor which uses the "DefaultConnection" connectionString
  550. </summary>
  551. </member>
  552. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.String)">
  553. <summary>
  554. Constructor which takes the connection string to use
  555. </summary>
  556. <param name="nameOrConnectionString"></param>
  557. </member>
  558. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)">
  559. <summary>
  560. Constructs a new context instance using the existing connection to connect to a database, and initializes it from
  561. the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is
  562. false.
  563. </summary>
  564. <param name="existingConnection">An existing connection to use for the new context.</param>
  565. <param name="model">The model that will back this context.</param>
  566. <param name="contextOwnsConnection">
  567. Constructs a new context instance using the existing connection to connect to a
  568. database, and initializes it from the given model. The connection will not be disposed when the context is
  569. disposed if contextOwnsConnection is false.
  570. </param>
  571. </member>
  572. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)">
  573. <summary>
  574. Constructs a new context instance using conventions to create the name of
  575. the database to which a connection will be made, and initializes it from
  576. the given model. The by-convention name is the full name (namespace + class
  577. name) of the derived context class. See the class remarks for how this is
  578. used to create a connection.
  579. </summary>
  580. <param name="model">The model that will back this context.</param>
  581. </member>
  582. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Common.DbConnection,System.Boolean)">
  583. <summary>
  584. Constructs a new context instance using the existing connection to connect
  585. to a database. The connection will not be disposed when the context is disposed
  586. if contextOwnsConnection is false.
  587. </summary>
  588. <param name="existingConnection">An existing connection to use for the new context.</param>
  589. <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise
  590. the caller must dispose the connection.
  591. </param>
  592. </member>
  593. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)">
  594. <summary>
  595. Constructs a new context instance using the given string as the name or connection
  596. string for the database to which a connection will be made, and initializes
  597. it from the given model. See the class remarks for how this is used to create
  598. a connection.
  599. </summary>
  600. <param name="nameOrConnectionString">Either the database name or a connection string.</param>
  601. <param name="model">The model that will back this context.</param>
  602. </member>
  603. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.OnModelCreating(System.Data.Entity.DbModelBuilder)">
  604. <summary>
  605. Maps table names, and sets up relationships between the various user entities
  606. </summary>
  607. <param name="modelBuilder"></param>
  608. </member>
  609. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.ValidateEntity(System.Data.Entity.Infrastructure.DbEntityEntry,System.Collections.Generic.IDictionary{System.Object,System.Object})">
  610. <summary>
  611. Validates that UserNames are unique and case insenstive
  612. </summary>
  613. <param name="entityEntry"></param>
  614. <param name="items"></param>
  615. <returns></returns>
  616. </member>
  617. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.Users">
  618. <summary>
  619. IDbSet of Users
  620. </summary>
  621. </member>
  622. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.Roles">
  623. <summary>
  624. IDbSet of Roles
  625. </summary>
  626. </member>
  627. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.RequireUniqueEmail">
  628. <summary>
  629. If true validates that emails are unique
  630. </summary>
  631. </member>
  632. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor">
  633. <summary>
  634. Default constructor which uses the DefaultConnection
  635. </summary>
  636. </member>
  637. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.String)">
  638. <summary>
  639. Constructor which takes the connection string to use
  640. </summary>
  641. <param name="nameOrConnectionString"></param>
  642. </member>
  643. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)">
  644. <summary>
  645. Constructs a new context instance using the existing connection to connect to a database, and initializes it from
  646. the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is
  647. false.
  648. </summary>
  649. <param name="existingConnection">An existing connection to use for the new context.</param>
  650. <param name="model">The model that will back this context.</param>
  651. <param name="contextOwnsConnection">
  652. Constructs a new context instance using the existing connection to connect to a
  653. database, and initializes it from the given model. The connection will not be disposed when the context is
  654. disposed if contextOwnsConnection is false.
  655. </param>
  656. </member>
  657. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)">
  658. <summary>
  659. Constructs a new context instance using conventions to create the name of
  660. the database to which a connection will be made, and initializes it from
  661. the given model. The by-convention name is the full name (namespace + class
  662. name) of the derived context class. See the class remarks for how this is
  663. used to create a connection.
  664. </summary>
  665. <param name="model">The model that will back this context.</param>
  666. </member>
  667. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Common.DbConnection,System.Boolean)">
  668. <summary>
  669. Constructs a new context instance using the existing connection to connect
  670. to a database. The connection will not be disposed when the context is disposed
  671. if contextOwnsConnection is false.
  672. </summary>
  673. <param name="existingConnection">An existing connection to use for the new context.</param>
  674. <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise
  675. the caller must dispose the connection.
  676. </param>
  677. </member>
  678. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)">
  679. <summary>
  680. Constructs a new context instance using the given string as the name or connection
  681. string for the database to which a connection will be made, and initializes
  682. it from the given model. See the class remarks for how this is used to create
  683. a connection.
  684. </summary>
  685. <param name="nameOrConnectionString">Either the database name or a connection string.</param>
  686. <param name="model">The model that will back this context.</param>
  687. </member>
  688. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1">
  689. <summary>
  690. DbContext which uses a custom user entity with a string primary key
  691. </summary>
  692. <typeparam name="TUser"></typeparam>
  693. </member>
  694. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor">
  695. <summary>
  696. Default constructor which uses the DefaultConnection
  697. </summary>
  698. </member>
  699. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String)">
  700. <summary>
  701. Constructor which takes the connection string to use
  702. </summary>
  703. <param name="nameOrConnectionString"></param>
  704. </member>
  705. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String,System.Boolean)">
  706. <summary>
  707. Constructor which takes the connection string to use
  708. </summary>
  709. <param name="nameOrConnectionString"></param>
  710. <param name="throwIfV1Schema">Will throw an exception if the schema matches that of Identity 1.0.0</param>
  711. </member>
  712. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)">
  713. <summary>
  714. Constructs a new context instance using the existing connection to connect to a database, and initializes it from
  715. the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is
  716. false.
  717. </summary>
  718. <param name="existingConnection">An existing connection to use for the new context.</param>
  719. <param name="model">The model that will back this context.</param>
  720. <param name="contextOwnsConnection">
  721. Constructs a new context instance using the existing connection to connect to a
  722. database, and initializes it from the given model. The connection will not be disposed when the context is
  723. disposed if contextOwnsConnection is false.
  724. </param>
  725. </member>
  726. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)">
  727. <summary>
  728. Constructs a new context instance using conventions to create the name of
  729. the database to which a connection will be made, and initializes it from
  730. the given model. The by-convention name is the full name (namespace + class
  731. name) of the derived context class. See the class remarks for how this is
  732. used to create a connection.
  733. </summary>
  734. <param name="model">The model that will back this context.</param>
  735. </member>
  736. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Common.DbConnection,System.Boolean)">
  737. <summary>
  738. Constructs a new context instance using the existing connection to connect
  739. to a database. The connection will not be disposed when the context is disposed
  740. if contextOwnsConnection is false.
  741. </summary>
  742. <param name="existingConnection">An existing connection to use for the new context.</param>
  743. <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise
  744. the caller must dispose the connection.
  745. </param>
  746. </member>
  747. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)">
  748. <summary>
  749. Constructs a new context instance using the given string as the name or connection
  750. string for the database to which a connection will be made, and initializes
  751. it from the given model. See the class remarks for how this is used to create
  752. a connection.
  753. </summary>
  754. <param name="nameOrConnectionString">Either the database name or a connection string.</param>
  755. <param name="model">The model that will back this context.</param>
  756. </member>
  757. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityResources">
  758. <summary>
  759. A strongly-typed resource class, for looking up localized strings, etc.
  760. </summary>
  761. </member>
  762. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ResourceManager">
  763. <summary>
  764. Returns the cached ResourceManager instance used by this class.
  765. </summary>
  766. </member>
  767. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.Culture">
  768. <summary>
  769. Overrides the current thread's CurrentUICulture property for all
  770. resource lookups using this strongly typed resource class.
  771. </summary>
  772. </member>
  773. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DbValidationFailed">
  774. <summary>
  775. Looks up a localized string similar to Database Validation failed..
  776. </summary>
  777. </member>
  778. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DuplicateEmail">
  779. <summary>
  780. Looks up a localized string similar to Email {0} is already taken..
  781. </summary>
  782. </member>
  783. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DuplicateUserName">
  784. <summary>
  785. Looks up a localized string similar to User name {0} is already taken..
  786. </summary>
  787. </member>
  788. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.EntityFailedValidation">
  789. <summary>
  790. Looks up a localized string similar to Entity Type {0} failed validation..
  791. </summary>
  792. </member>
  793. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ExternalLoginExists">
  794. <summary>
  795. Looks up a localized string similar to A user with that external login already exists..
  796. </summary>
  797. </member>
  798. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.IdentityV1SchemaError">
  799. <summary>
  800. Looks up a localized string similar to The model backing the &apos;ApplicationDbContext&apos; context has changed since the database was created. This could have happened because the model used by ASP.NET Identity Framework has changed or the model being used in your application has changed. To resolve this issue, you need to update your database. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=301867). Before you update your database using Code First Migrations, please disable the schema consistency ch [rest of string was truncated]&quot;;.
  801. </summary>
  802. </member>
  803. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.IncorrectType">
  804. <summary>
  805. Looks up a localized string similar to Incorrect type, expected type of {0}..
  806. </summary>
  807. </member>
  808. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.PropertyCannotBeEmpty">
  809. <summary>
  810. Looks up a localized string similar to {0} cannot be null or empty..
  811. </summary>
  812. </member>
  813. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleAlreadyExists">
  814. <summary>
  815. Looks up a localized string similar to Role {0} already exists..
  816. </summary>
  817. </member>
  818. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleIsNotEmpty">
  819. <summary>
  820. Looks up a localized string similar to Role is not empty..
  821. </summary>
  822. </member>
  823. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleNotFound">
  824. <summary>
  825. Looks up a localized string similar to Role {0} does not exist..
  826. </summary>
  827. </member>
  828. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserAlreadyInRole">
  829. <summary>
  830. Looks up a localized string similar to User already in role..
  831. </summary>
  832. </member>
  833. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserIdNotFound">
  834. <summary>
  835. Looks up a localized string similar to The UserId cannot be found..
  836. </summary>
  837. </member>
  838. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserLoginAlreadyExists">
  839. <summary>
  840. Looks up a localized string similar to UserLogin already exists for loginProvider: {0} with providerKey: {1}.
  841. </summary>
  842. </member>
  843. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserNameNotFound">
  844. <summary>
  845. Looks up a localized string similar to User {0} does not exist..
  846. </summary>
  847. </member>
  848. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserNotInRole">
  849. <summary>
  850. Looks up a localized string similar to User is not in role..
  851. </summary>
  852. </member>
  853. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ValueCannotBeNullOrEmpty">
  854. <summary>
  855. Looks up a localized string similar to Value cannot be null or empty..
  856. </summary>
  857. </member>
  858. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityRole">
  859. <summary>
  860. Represents a Role entity
  861. </summary>
  862. </member>
  863. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2">
  864. <summary>
  865. Represents a Role entity
  866. </summary>
  867. <typeparam name="TKey"></typeparam>
  868. <typeparam name="TUserRole"></typeparam>
  869. </member>
  870. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.#ctor">
  871. <summary>
  872. Constructor
  873. </summary>
  874. </member>
  875. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Users">
  876. <summary>
  877. Navigation property for users in the role
  878. </summary>
  879. </member>
  880. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Id">
  881. <summary>
  882. Role id
  883. </summary>
  884. </member>
  885. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Name">
  886. <summary>
  887. Role name
  888. </summary>
  889. </member>
  890. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole.#ctor">
  891. <summary>
  892. Constructor
  893. </summary>
  894. </member>
  895. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole.#ctor(System.String)">
  896. <summary>
  897. Constructor
  898. </summary>
  899. <param name="roleName"></param>
  900. </member>
  901. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUser">
  902. <summary>
  903. Default EntityFramework IUser implementation
  904. </summary>
  905. </member>
  906. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4">
  907. <summary>
  908. Default EntityFramework IUser implementation
  909. </summary>
  910. <typeparam name="TKey"></typeparam>
  911. <typeparam name="TLogin"></typeparam>
  912. <typeparam name="TRole"></typeparam>
  913. <typeparam name="TClaim"></typeparam>
  914. </member>
  915. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.#ctor">
  916. <summary>
  917. Constructor
  918. </summary>
  919. </member>
  920. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Email">
  921. <summary>
  922. Email
  923. </summary>
  924. </member>
  925. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.EmailConfirmed">
  926. <summary>
  927. True if the email is confirmed, default is false
  928. </summary>
  929. </member>
  930. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PasswordHash">
  931. <summary>
  932. The salted/hashed form of the user password
  933. </summary>
  934. </member>
  935. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.SecurityStamp">
  936. <summary>
  937. A random value that should change whenever a users credentials have changed (password changed, login removed)
  938. </summary>
  939. </member>
  940. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PhoneNumber">
  941. <summary>
  942. PhoneNumber for the user
  943. </summary>
  944. </member>
  945. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PhoneNumberConfirmed">
  946. <summary>
  947. True if the phone number is confirmed, default is false
  948. </summary>
  949. </member>
  950. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.TwoFactorEnabled">
  951. <summary>
  952. Is two factor enabled for the user
  953. </summary>
  954. </member>
  955. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.LockoutEndDateUtc">
  956. <summary>
  957. DateTime in UTC when lockout ends, any time in the past is considered not locked out.
  958. </summary>
  959. </member>
  960. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.LockoutEnabled">
  961. <summary>
  962. Is lockout enabled for this user
  963. </summary>
  964. </member>
  965. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.AccessFailedCount">
  966. <summary>
  967. Used to record failures for the purposes of lockout
  968. </summary>
  969. </member>
  970. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Roles">
  971. <summary>
  972. Navigation property for user roles
  973. </summary>
  974. </member>
  975. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Claims">
  976. <summary>
  977. Navigation property for user claims
  978. </summary>
  979. </member>
  980. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Logins">
  981. <summary>
  982. Navigation property for user logins
  983. </summary>
  984. </member>
  985. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Id">
  986. <summary>
  987. User ID (Primary Key)
  988. </summary>
  989. </member>
  990. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.UserName">
  991. <summary>
  992. User name
  993. </summary>
  994. </member>
  995. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser.#ctor">
  996. <summary>
  997. Constructor which creates a new Guid for the Id
  998. </summary>
  999. </member>
  1000. <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser.#ctor(System.String)">
  1001. <summary>
  1002. Constructor that takes a userName
  1003. </summary>
  1004. <param name="userName"></param>
  1005. </member>
  1006. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim">
  1007. <summary>
  1008. EntityType that represents one specific user claim
  1009. </summary>
  1010. </member>
  1011. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1">
  1012. <summary>
  1013. EntityType that represents one specific user claim
  1014. </summary>
  1015. <typeparam name="TKey"></typeparam>
  1016. </member>
  1017. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.Id">
  1018. <summary>
  1019. Primary key
  1020. </summary>
  1021. </member>
  1022. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.UserId">
  1023. <summary>
  1024. User Id for the user who owns this login
  1025. </summary>
  1026. </member>
  1027. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.ClaimType">
  1028. <summary>
  1029. Claim type
  1030. </summary>
  1031. </member>
  1032. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.ClaimValue">
  1033. <summary>
  1034. Claim value
  1035. </summary>
  1036. </member>
  1037. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin">
  1038. <summary>
  1039. Entity type for a user's login (i.e. facebook, google)
  1040. </summary>
  1041. </member>
  1042. <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1">
  1043. <summary>
  1044. Entity type for a user's login (i.e. facebook, google)
  1045. </summary>
  1046. <typeparam name="TKey"></typeparam>
  1047. </member>
  1048. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.LoginProvider">
  1049. <summary>
  1050. The login provider for the login (i.e. facebook, google)
  1051. </summary>
  1052. </member>
  1053. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.ProviderKey">
  1054. <summary>
  1055. Key representing the login for the provider
  1056. </summary>
  1057. </member>
  1058. <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.UserId">
  1059. <summary>
  1060. User Id for the user who owns this login
  1061. </summary>
  1062. </member>
  1063. </members>
  1064. </doc>