Microsoft.Extensions.DependencyInjection.Abstractions.xml 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.DependencyInjection.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.DependencyInjection.ActivatorUtilities">
  8. <summary>
  9. Helper code for the various activator services.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type,System.Object[])">
  13. <summary>
  14. Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>.
  15. </summary>
  16. <param name="provider">The service provider used to resolve dependencies</param>
  17. <param name="instanceType">The type to activate</param>
  18. <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param>
  19. <returns>An activated object of type instanceType</returns>
  20. </member>
  21. <member name="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory(System.Type,System.Type[])">
  22. <summary>
  23. Create a delegate that will instantiate a type with constructor arguments provided directly
  24. and/or from an <see cref="T:System.IServiceProvider"/>.
  25. </summary>
  26. <param name="instanceType">The type to activate</param>
  27. <param name="argumentTypes">
  28. The types of objects, in order, that will be passed to the returned function as its second parameter
  29. </param>
  30. <returns>
  31. A factory that will instantiate instanceType using an <see cref="T:System.IServiceProvider"/>
  32. and an argument array containing objects matching the types defined in argumentTypes
  33. </returns>
  34. </member>
  35. <member name="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateInstance``1(System.IServiceProvider,System.Object[])">
  36. <summary>
  37. Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>.
  38. </summary>
  39. <typeparam name="T">The type to activate</typeparam>
  40. <param name="provider">The service provider used to resolve dependencies</param>
  41. <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param>
  42. <returns>An activated object of type T</returns>
  43. </member>
  44. <member name="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance``1(System.IServiceProvider)">
  45. <summary>
  46. Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
  47. </summary>
  48. <typeparam name="T">The type of the service</typeparam>
  49. <param name="provider">The service provider used to resolve dependencies</param>
  50. <returns>The resolved service or created instance</returns>
  51. </member>
  52. <member name="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)">
  53. <summary>
  54. Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
  55. </summary>
  56. <param name="provider">The service provider</param>
  57. <param name="type">The type of the service</param>
  58. <returns>The resolved service or created instance</returns>
  59. </member>
  60. <member name="T:Microsoft.Extensions.DependencyInjection.IServiceCollection">
  61. <summary>
  62. Specifies the contract for a collection of service descriptors.
  63. </summary>
  64. </member>
  65. <member name="T:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1">
  66. <summary>
  67. Provides an extension point for creating a container specific builder and an <see cref="T:System.IServiceProvider"/>.
  68. </summary>
  69. </member>
  70. <member name="M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  71. <summary>
  72. Creates a container builder from an <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  73. </summary>
  74. <param name="services">The collection of services</param>
  75. <returns>A container builder that can be used to create an <see cref="T:System.IServiceProvider"/>.</returns>
  76. </member>
  77. <member name="M:Microsoft.Extensions.DependencyInjection.IServiceProviderFactory`1.CreateServiceProvider(`0)">
  78. <summary>
  79. Creates an <see cref="T:System.IServiceProvider"/> from the container builder.
  80. </summary>
  81. <param name="containerBuilder">The container builder</param>
  82. <returns>An <see cref="T:System.IServiceProvider"/></returns>
  83. </member>
  84. <member name="T:Microsoft.Extensions.DependencyInjection.IServiceScope">
  85. <summary>
  86. The <see cref="M:System.IDisposable.Dispose"/> method ends the scope lifetime. Once Dispose
  87. is called, any scoped services that have been resolved from
  88. <see cref="P:Microsoft.Extensions.DependencyInjection.IServiceScope.ServiceProvider"/> will be
  89. disposed.
  90. </summary>
  91. </member>
  92. <member name="P:Microsoft.Extensions.DependencyInjection.IServiceScope.ServiceProvider">
  93. <summary>
  94. The <see cref="T:System.IServiceProvider"/> used to resolve dependencies from the scope.
  95. </summary>
  96. </member>
  97. <member name="M:Microsoft.Extensions.DependencyInjection.IServiceScopeFactory.CreateScope">
  98. <summary>
  99. Create an <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceScope"/> which
  100. contains an <see cref="T:System.IServiceProvider"/> used to resolve dependencies from a
  101. newly created scope.
  102. </summary>
  103. <returns>
  104. An <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceScope"/> controlling the
  105. lifetime of the scope. Once this is disposed, any scoped services that have been resolved
  106. from the <see cref="P:Microsoft.Extensions.DependencyInjection.IServiceScope.ServiceProvider"/>
  107. will also be disposed.
  108. </returns>
  109. </member>
  110. <member name="T:Microsoft.Extensions.DependencyInjection.ISupportRequiredService">
  111. <summary>
  112. Optional contract used by <see cref="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService``1(System.IServiceProvider)"/>
  113. to resolve services if supported by <see cref="T:System.IServiceProvider"/>.
  114. </summary>
  115. </member>
  116. <member name="M:Microsoft.Extensions.DependencyInjection.ISupportRequiredService.GetRequiredService(System.Type)">
  117. <summary>
  118. Gets service of type <paramref name="serviceType"/> from the <see cref="T:System.IServiceProvider"/> implementing
  119. this interface.
  120. </summary>
  121. <param name="serviceType">An object that specifies the type of service object to get.</param>
  122. <returns>A service object of type <paramref name="serviceType"/>.
  123. Throws an exception if the <see cref="T:System.IServiceProvider"/> cannot create the object.</returns>
  124. </member>
  125. <member name="T:Microsoft.Extensions.DependencyInjection.ObjectFactory">
  126. <summary>
  127. The result of <see cref="M:Microsoft.Extensions.DependencyInjection.ActivatorUtilities.CreateFactory(System.Type,System.Type[])"/>.
  128. </summary>
  129. <param name="serviceProvider">The <see cref="T:System.IServiceProvider"/> to get service arguments from.</param>
  130. <param name="arguments">Additional constructor arguments.</param>
  131. <returns>The instantiated type.</returns>
  132. </member>
  133. <member name="T:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions">
  134. <summary>
  135. Extension methods for adding services to an <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection" />.
  136. </summary>
  137. </member>
  138. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)">
  139. <summary>
  140. Adds a transient service of the type specified in <paramref name="serviceType"/> with an
  141. implementation of the type specified in <paramref name="implementationType"/> to the
  142. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  143. </summary>
  144. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  145. <param name="serviceType">The type of the service to register.</param>
  146. <param name="implementationType">The implementation type of the service.</param>
  147. <returns>A reference to this instance after the operation has completed.</returns>
  148. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  149. </member>
  150. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})">
  151. <summary>
  152. Adds a transient service of the type specified in <paramref name="serviceType"/> with a
  153. factory specified in <paramref name="implementationFactory"/> to the
  154. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  155. </summary>
  156. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  157. <param name="serviceType">The type of the service to register.</param>
  158. <param name="implementationFactory">The factory that creates the service.</param>
  159. <returns>A reference to this instance after the operation has completed.</returns>
  160. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  161. </member>
  162. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  163. <summary>
  164. Adds a transient service of the type specified in <typeparamref name="TService"/> with an
  165. implementation type specified in <typeparamref name="TImplementation"/> to the
  166. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  167. </summary>
  168. <typeparam name="TService">The type of the service to add.</typeparam>
  169. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  170. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  171. <returns>A reference to this instance after the operation has completed.</returns>
  172. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  173. </member>
  174. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)">
  175. <summary>
  176. Adds a transient service of the type specified in <paramref name="serviceType"/> to the
  177. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  178. </summary>
  179. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  180. <param name="serviceType">The type of the service to register and the implementation to use.</param>
  181. <returns>A reference to this instance after the operation has completed.</returns>
  182. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  183. </member>
  184. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  185. <summary>
  186. Adds a transient service of the type specified in <typeparamref name="TService"/> to the
  187. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  188. </summary>
  189. <typeparam name="TService">The type of the service to add.</typeparam>
  190. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  191. <returns>A reference to this instance after the operation has completed.</returns>
  192. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  193. </member>
  194. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})">
  195. <summary>
  196. Adds a transient service of the type specified in <typeparamref name="TService"/> with a
  197. factory specified in <paramref name="implementationFactory"/> to the
  198. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  199. </summary>
  200. <typeparam name="TService">The type of the service to add.</typeparam>
  201. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  202. <param name="implementationFactory">The factory that creates the service.</param>
  203. <returns>A reference to this instance after the operation has completed.</returns>
  204. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  205. </member>
  206. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddTransient``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})">
  207. <summary>
  208. Adds a transient service of the type specified in <typeparamref name="TService"/> with an
  209. implementation type specified in <typeparamref name="TImplementation" /> using the
  210. factory specified in <paramref name="implementationFactory"/> to the
  211. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  212. </summary>
  213. <typeparam name="TService">The type of the service to add.</typeparam>
  214. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  215. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  216. <param name="implementationFactory">The factory that creates the service.</param>
  217. <returns>A reference to this instance after the operation has completed.</returns>
  218. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient"/>
  219. </member>
  220. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)">
  221. <summary>
  222. Adds a scoped service of the type specified in <paramref name="serviceType"/> with an
  223. implementation of the type specified in <paramref name="implementationType"/> to the
  224. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  225. </summary>
  226. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  227. <param name="serviceType">The type of the service to register.</param>
  228. <param name="implementationType">The implementation type of the service.</param>
  229. <returns>A reference to this instance after the operation has completed.</returns>
  230. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  231. </member>
  232. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})">
  233. <summary>
  234. Adds a scoped service of the type specified in <paramref name="serviceType"/> with a
  235. factory specified in <paramref name="implementationFactory"/> to the
  236. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  237. </summary>
  238. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  239. <param name="serviceType">The type of the service to register.</param>
  240. <param name="implementationFactory">The factory that creates the service.</param>
  241. <returns>A reference to this instance after the operation has completed.</returns>
  242. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  243. </member>
  244. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  245. <summary>
  246. Adds a scoped service of the type specified in <typeparamref name="TService"/> with an
  247. implementation type specified in <typeparamref name="TImplementation"/> to the
  248. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  249. </summary>
  250. <typeparam name="TService">The type of the service to add.</typeparam>
  251. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  252. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  253. <returns>A reference to this instance after the operation has completed.</returns>
  254. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  255. </member>
  256. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)">
  257. <summary>
  258. Adds a scoped service of the type specified in <paramref name="serviceType"/> to the
  259. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  260. </summary>
  261. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  262. <param name="serviceType">The type of the service to register and the implementation to use.</param>
  263. <returns>A reference to this instance after the operation has completed.</returns>
  264. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  265. </member>
  266. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  267. <summary>
  268. Adds a scoped service of the type specified in <typeparamref name="TService"/> to the
  269. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  270. </summary>
  271. <typeparam name="TService">The type of the service to add.</typeparam>
  272. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  273. <returns>A reference to this instance after the operation has completed.</returns>
  274. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  275. </member>
  276. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})">
  277. <summary>
  278. Adds a scoped service of the type specified in <typeparamref name="TService"/> with a
  279. factory specified in <paramref name="implementationFactory"/> to the
  280. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  281. </summary>
  282. <typeparam name="TService">The type of the service to add.</typeparam>
  283. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  284. <param name="implementationFactory">The factory that creates the service.</param>
  285. <returns>A reference to this instance after the operation has completed.</returns>
  286. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  287. </member>
  288. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddScoped``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})">
  289. <summary>
  290. Adds a scoped service of the type specified in <typeparamref name="TService"/> with an
  291. implementation type specified in <typeparamref name="TImplementation" /> using the
  292. factory specified in <paramref name="implementationFactory"/> to the
  293. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  294. </summary>
  295. <typeparam name="TService">The type of the service to add.</typeparam>
  296. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  297. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  298. <param name="implementationFactory">The factory that creates the service.</param>
  299. <returns>A reference to this instance after the operation has completed.</returns>
  300. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped"/>
  301. </member>
  302. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Type)">
  303. <summary>
  304. Adds a singleton service of the type specified in <paramref name="serviceType"/> with an
  305. implementation of the type specified in <paramref name="implementationType"/> to the
  306. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  307. </summary>
  308. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  309. <param name="serviceType">The type of the service to register.</param>
  310. <param name="implementationType">The implementation type of the service.</param>
  311. <returns>A reference to this instance after the operation has completed.</returns>
  312. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  313. </member>
  314. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Func{System.IServiceProvider,System.Object})">
  315. <summary>
  316. Adds a singleton service of the type specified in <paramref name="serviceType"/> with a
  317. factory specified in <paramref name="implementationFactory"/> to the
  318. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  319. </summary>
  320. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  321. <param name="serviceType">The type of the service to register.</param>
  322. <param name="implementationFactory">The factory that creates the service.</param>
  323. <returns>A reference to this instance after the operation has completed.</returns>
  324. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  325. </member>
  326. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  327. <summary>
  328. Adds a singleton service of the type specified in <typeparamref name="TService"/> with an
  329. implementation type specified in <typeparamref name="TImplementation"/> to the
  330. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  331. </summary>
  332. <typeparam name="TService">The type of the service to add.</typeparam>
  333. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  334. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  335. <returns>A reference to this instance after the operation has completed.</returns>
  336. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  337. </member>
  338. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)">
  339. <summary>
  340. Adds a singleton service of the type specified in <paramref name="serviceType"/> to the
  341. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  342. </summary>
  343. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  344. <param name="serviceType">The type of the service to register and the implementation to use.</param>
  345. <returns>A reference to this instance after the operation has completed.</returns>
  346. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  347. </member>
  348. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  349. <summary>
  350. Adds a singleton service of the type specified in <typeparamref name="TService"/> to the
  351. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  352. </summary>
  353. <typeparam name="TService">The type of the service to add.</typeparam>
  354. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  355. <returns>A reference to this instance after the operation has completed.</returns>
  356. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  357. </member>
  358. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``0})">
  359. <summary>
  360. Adds a singleton service of the type specified in <typeparamref name="TService"/> with a
  361. factory specified in <paramref name="implementationFactory"/> to the
  362. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  363. </summary>
  364. <typeparam name="TService">The type of the service to add.</typeparam>
  365. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  366. <param name="implementationFactory">The factory that creates the service.</param>
  367. <returns>A reference to this instance after the operation has completed.</returns>
  368. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  369. </member>
  370. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``2(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Func{System.IServiceProvider,``1})">
  371. <summary>
  372. Adds a singleton service of the type specified in <typeparamref name="TService"/> with an
  373. implementation type specified in <typeparamref name="TImplementation" /> using the
  374. factory specified in <paramref name="implementationFactory"/> to the
  375. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  376. </summary>
  377. <typeparam name="TService">The type of the service to add.</typeparam>
  378. <typeparam name="TImplementation">The type of the implementation to use.</typeparam>
  379. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  380. <param name="implementationFactory">The factory that creates the service.</param>
  381. <returns>A reference to this instance after the operation has completed.</returns>
  382. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  383. </member>
  384. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object)">
  385. <summary>
  386. Adds a singleton service of the type specified in <paramref name="serviceType"/> with an
  387. instance specified in <paramref name="implementationInstance"/> to the
  388. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  389. </summary>
  390. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  391. <param name="serviceType">The type of the service to register.</param>
  392. <param name="implementationInstance">The instance of the service.</param>
  393. <returns>A reference to this instance after the operation has completed.</returns>
  394. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  395. </member>
  396. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,``0)">
  397. <summary>
  398. Adds a singleton service of the type specified in <typeparamref name="TService" /> with an
  399. instance specified in <paramref name="implementationInstance"/> to the
  400. specified <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  401. </summary>
  402. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the service to.</param>
  403. <param name="implementationInstance">The instance of the service.</param>
  404. <returns>A reference to this instance after the operation has completed.</returns>
  405. <seealso cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>
  406. </member>
  407. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Type,Microsoft.Extensions.DependencyInjection.ServiceLifetime)">
  408. <summary>
  409. Initializes a new instance of <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> with the specified <paramref name="implementationType"/>.
  410. </summary>
  411. <param name="serviceType">The <see cref="T:System.Type"/> of the service.</param>
  412. <param name="implementationType">The <see cref="T:System.Type"/> implementing the service.</param>
  413. <param name="lifetime">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceLifetime"/> of the service.</param>
  414. </member>
  415. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Object)">
  416. <summary>
  417. Initializes a new instance of <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> with the specified <paramref name="instance"/>
  418. as a <see cref="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton"/>.
  419. </summary>
  420. <param name="serviceType">The <see cref="T:System.Type"/> of the service.</param>
  421. <param name="instance">The instance implementing the service.</param>
  422. </member>
  423. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.#ctor(System.Type,System.Func{System.IServiceProvider,System.Object},Microsoft.Extensions.DependencyInjection.ServiceLifetime)">
  424. <summary>
  425. Initializes a new instance of <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> with the specified <paramref name="factory"/>.
  426. </summary>
  427. <param name="serviceType">The <see cref="T:System.Type"/> of the service.</param>
  428. <param name="factory">A factory used for creating service instances.</param>
  429. <param name="lifetime">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceLifetime"/> of the service.</param>
  430. </member>
  431. <member name="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.Lifetime">
  432. <inheritdoc />
  433. </member>
  434. <member name="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceType">
  435. <inheritdoc />
  436. </member>
  437. <member name="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationType">
  438. <inheritdoc />
  439. </member>
  440. <member name="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationInstance">
  441. <inheritdoc />
  442. </member>
  443. <member name="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ImplementationFactory">
  444. <inheritdoc />
  445. </member>
  446. <member name="T:Microsoft.Extensions.DependencyInjection.ServiceLifetime">
  447. <summary>
  448. Specifies the lifetime of a service in an <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.
  449. </summary>
  450. </member>
  451. <member name="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Singleton">
  452. <summary>
  453. Specifies that a single instance of the service will be created.
  454. </summary>
  455. </member>
  456. <member name="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Scoped">
  457. <summary>
  458. Specifies that a new instance of the service will be created for each scope.
  459. </summary>
  460. <remarks>
  461. In ASP.NET Core applications a scope is created around each server request.
  462. </remarks>
  463. </member>
  464. <member name="F:Microsoft.Extensions.DependencyInjection.ServiceLifetime.Transient">
  465. <summary>
  466. Specifies that a new instance of the service will be created every time it is requested.
  467. </summary>
  468. </member>
  469. <member name="T:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions">
  470. <summary>
  471. Extension methods for getting services from an <see cref="T:System.IServiceProvider" />.
  472. </summary>
  473. </member>
  474. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetService``1(System.IServiceProvider)">
  475. <summary>
  476. Get service of type <typeparamref name="T"/> from the <see cref="T:System.IServiceProvider"/>.
  477. </summary>
  478. <typeparam name="T">The type of service object to get.</typeparam>
  479. <param name="provider">The <see cref="T:System.IServiceProvider"/> to retrieve the service object from.</param>
  480. <returns>A service object of type <typeparamref name="T"/> or null if there is no such service.</returns>
  481. </member>
  482. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(System.IServiceProvider,System.Type)">
  483. <summary>
  484. Get service of type <paramref name="serviceType"/> from the <see cref="T:System.IServiceProvider"/>.
  485. </summary>
  486. <param name="provider">The <see cref="T:System.IServiceProvider"/> to retrieve the service object from.</param>
  487. <param name="serviceType">An object that specifies the type of service object to get.</param>
  488. <returns>A service object of type <paramref name="serviceType"/>.</returns>
  489. <exception cref="T:System.InvalidOperationException">There is no service of type <paramref name="serviceType"/>.</exception>
  490. </member>
  491. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService``1(System.IServiceProvider)">
  492. <summary>
  493. Get service of type <typeparamref name="T"/> from the <see cref="T:System.IServiceProvider"/>.
  494. </summary>
  495. <typeparam name="T">The type of service object to get.</typeparam>
  496. <param name="provider">The <see cref="T:System.IServiceProvider"/> to retrieve the service object from.</param>
  497. <returns>A service object of type <typeparamref name="T"/>.</returns>
  498. <exception cref="T:System.InvalidOperationException">There is no service of type <typeparamref name="T"/>.</exception>
  499. </member>
  500. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices``1(System.IServiceProvider)">
  501. <summary>
  502. Get an enumeration of services of type <typeparamref name="T"/> from the <see cref="T:System.IServiceProvider"/>.
  503. </summary>
  504. <typeparam name="T">The type of service object to get.</typeparam>
  505. <param name="provider">The <see cref="T:System.IServiceProvider"/> to retrieve the services from.</param>
  506. <returns>An enumeration of services of type <typeparamref name="T"/>.</returns>
  507. </member>
  508. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetServices(System.IServiceProvider,System.Type)">
  509. <summary>
  510. Get an enumeration of services of type <paramref name="serviceType"/> from the <see cref="T:System.IServiceProvider"/>.
  511. </summary>
  512. <param name="provider">The <see cref="T:System.IServiceProvider"/> to retrieve the services from.</param>
  513. <param name="serviceType">An object that specifies the type of service object to get.</param>
  514. <returns>An enumeration of services of type <paramref name="serviceType"/>.</returns>
  515. </member>
  516. <member name="M:Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.CreateScope(System.IServiceProvider)">
  517. <summary>
  518. Creates a new <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceScope"/> that can be used to resolve scoped services.
  519. </summary>
  520. <param name="provider">The <see cref="T:System.IServiceProvider"/> to create the scope from.</param>
  521. <returns>A <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceScope"/> that can be used to resolve scoped services.</returns>
  522. </member>
  523. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)">
  524. <summary>
  525. Adds the specified <paramref name="descriptor"/> to the <paramref name="collection"/>.
  526. </summary>
  527. <param name="collection">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  528. <param name="descriptor">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>.</param>
  529. <returns>A reference to the current instance of <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</returns>
  530. </member>
  531. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})">
  532. <summary>
  533. Adds a sequence of <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> to the <paramref name="collection"/>.
  534. </summary>
  535. <param name="collection">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  536. <param name="descriptors">The <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>s to add.</param>
  537. <returns>A reference to the current instance of <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</returns>
  538. </member>
  539. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)">
  540. <summary>
  541. Adds the specified <paramref name="descriptor"/> to the <paramref name="collection"/> if the
  542. service type hasn't been already registered.
  543. </summary>
  544. <param name="collection">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  545. <param name="descriptor">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>.</param>
  546. </member>
  547. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAdd(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})">
  548. <summary>
  549. Adds the specified <paramref name="descriptors"/> to the <paramref name="collection"/> if the
  550. service type hasn't been already registered.
  551. </summary>
  552. <param name="collection">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  553. <param name="descriptors">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>s.</param>
  554. </member>
  555. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)">
  556. <summary>
  557. Adds a <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> if an existing descriptor with the same
  558. <see cref="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceType"/> and an implementation that does not already exist
  559. in <paramref name="services.."/>.
  560. </summary>
  561. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  562. <param name="descriptor">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>.</param>
  563. <remarks>
  564. Use <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> when registing a service implementation of a
  565. service type that
  566. supports multiple registrations of the same service type. Using
  567. <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> is not idempotent and can add
  568. duplicate
  569. <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> instances if called twice. Using
  570. <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> will prevent registration
  571. of multiple implementation types.
  572. </remarks>
  573. </member>
  574. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Collections.Generic.IEnumerable{Microsoft.Extensions.DependencyInjection.ServiceDescriptor})">
  575. <summary>
  576. Adds the specified <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>s if an existing descriptor with the same
  577. <see cref="P:Microsoft.Extensions.DependencyInjection.ServiceDescriptor.ServiceType"/> and an implementation that does not already exist
  578. in <paramref name="services.."/>.
  579. </summary>
  580. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  581. <param name="descriptors">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/>s.</param>
  582. <remarks>
  583. Use <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> when registing a service
  584. implementation of a service type that
  585. supports multiple registrations of the same service type. Using
  586. <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Add(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> is not idempotent and can add
  587. duplicate
  588. <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> instances if called twice. Using
  589. <see cref="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.TryAddEnumerable(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)"/> will prevent registration
  590. of multiple implementation types.
  591. </remarks>
  592. </member>
  593. <member name="M:Microsoft.Extensions.DependencyInjection.Extensions.ServiceCollectionDescriptorExtensions.Replace(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceDescriptor)">
  594. <summary>
  595. Removes the first service in <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> with the same service type
  596. as <paramref name="descriptor"/> and adds <paramef name="descriptor"/> to the collection.
  597. </summary>
  598. <param name="collection">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  599. <param name="descriptor">The <see cref="T:Microsoft.Extensions.DependencyInjection.ServiceDescriptor"/> to replace with.</param>
  600. <returns></returns>
  601. </member>
  602. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.AmbiguousConstructorMatch">
  603. <summary>
  604. Multiple constructors accepting all given argument types have been found in type '{0}'. There should only be one applicable constructor.
  605. </summary>
  606. </member>
  607. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatAmbiguousConstructorMatch(System.Object)">
  608. <summary>
  609. Multiple constructors accepting all given argument types have been found in type '{0}'. There should only be one applicable constructor.
  610. </summary>
  611. </member>
  612. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.CannotLocateImplementation">
  613. <summary>
  614. Unable to locate implementation '{0}' for service '{1}'.
  615. </summary>
  616. </member>
  617. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatCannotLocateImplementation(System.Object,System.Object)">
  618. <summary>
  619. Unable to locate implementation '{0}' for service '{1}'.
  620. </summary>
  621. </member>
  622. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.CannotResolveService">
  623. <summary>
  624. Unable to resolve service for type '{0}' while attempting to activate '{1}'.
  625. </summary>
  626. </member>
  627. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatCannotResolveService(System.Object,System.Object)">
  628. <summary>
  629. Unable to resolve service for type '{0}' while attempting to activate '{1}'.
  630. </summary>
  631. </member>
  632. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.NoConstructorMatch">
  633. <summary>
  634. A suitable constructor for type '{0}' could not be located. Ensure the type is concrete and services are registered for all parameters of a public constructor.
  635. </summary>
  636. </member>
  637. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatNoConstructorMatch(System.Object)">
  638. <summary>
  639. A suitable constructor for type '{0}' could not be located. Ensure the type is concrete and services are registered for all parameters of a public constructor.
  640. </summary>
  641. </member>
  642. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.NoServiceRegistered">
  643. <summary>
  644. No service for type '{0}' has been registered.
  645. </summary>
  646. </member>
  647. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatNoServiceRegistered(System.Object)">
  648. <summary>
  649. No service for type '{0}' has been registered.
  650. </summary>
  651. </member>
  652. <member name="P:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.TryAddIndistinguishableTypeToEnumerable">
  653. <summary>
  654. Implementation type cannot be '{0}' because it is indistinguishable from other services registered for '{1}'.
  655. </summary>
  656. </member>
  657. <member name="M:Microsoft.Extensions.DependencyInjection.Abstractions.Resources.FormatTryAddIndistinguishableTypeToEnumerable(System.Object,System.Object)">
  658. <summary>
  659. Implementation type cannot be '{0}' because it is indistinguishable from other services registered for '{1}'.
  660. </summary>
  661. </member>
  662. </members>
  663. </doc>