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.
 
 
 
 
 
 

1016 lines
47 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Owin.Hosting</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Reflection.AssemblyMetadataAttribute">
  8. <summary>
  9. Provided as a down-level stub for the 4.5 AssemblyMetaDataAttribute class.
  10. All released assemblies should define [AssemblyMetadata("Serviceable", "True")].
  11. </summary>
  12. </member>
  13. <member name="T:Owin.Loader.DefaultLoader">
  14. <summary>
  15. Locates the startup class based on the following convention:
  16. AssemblyName.Startup, with a method named Configuration
  17. </summary>
  18. </member>
  19. <member name="M:Owin.Loader.DefaultLoader.#ctor">
  20. <summary>
  21. </summary>
  22. </member>
  23. <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
  24. <summary>
  25. Allows for a fallback loader to be specified.
  26. </summary>
  27. <param name="next"></param>
  28. </member>
  29. <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object})">
  30. <summary>
  31. Allows for a fallback loader and a Dependency Injection activator to be specified.
  32. </summary>
  33. <param name="next"></param>
  34. <param name="activator"></param>
  35. </member>
  36. <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object},System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
  37. <summary>
  38. </summary>
  39. <param name="next"></param>
  40. <param name="activator"></param>
  41. <param name="referencedAssemblies"></param>
  42. </member>
  43. <member name="M:Owin.Loader.DefaultLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
  44. <summary>
  45. Executes the loader, searching for the entry point by name.
  46. </summary>
  47. <param name="startupName">The name of the assembly and type entry point</param>
  48. <param name="errorDetails"></param>
  49. <returns></returns>
  50. </member>
  51. <member name="M:Owin.Loader.DefaultLoader.DotByDot(System.String)">
  52. <summary>
  53. </summary>
  54. <param name="text"></param>
  55. <returns></returns>
  56. </member>
  57. <member name="T:Owin.Loader.NullLoader">
  58. <summary>
  59. A default fallback loader that does nothing.
  60. </summary>
  61. </member>
  62. <member name="M:Owin.Loader.NullLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
  63. <summary>
  64. A placeholder method that always returns null.
  65. </summary>
  66. <param name="startup"></param>
  67. <param name="errors"></param>
  68. <returns>null.</returns>
  69. </member>
  70. <member name="P:Owin.Loader.NullLoader.Instance">
  71. <summary>
  72. A singleton instance of the NullLoader type.
  73. </summary>
  74. </member>
  75. <member name="T:SharedResourceNamespace.LoaderResources">
  76. <summary>
  77. A strongly-typed resource class, for looking up localized strings, etc.
  78. </summary>
  79. </member>
  80. <member name="P:SharedResourceNamespace.LoaderResources.ResourceManager">
  81. <summary>
  82. Returns the cached ResourceManager instance used by this class.
  83. </summary>
  84. </member>
  85. <member name="P:SharedResourceNamespace.LoaderResources.Culture">
  86. <summary>
  87. Overrides the current thread's CurrentUICulture property for all
  88. resource lookups using this strongly typed resource class.
  89. </summary>
  90. </member>
  91. <member name="P:SharedResourceNamespace.LoaderResources.AssemblyNotFound">
  92. <summary>
  93. Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the assembly &apos;{1}&apos; was not found..
  94. </summary>
  95. </member>
  96. <member name="P:SharedResourceNamespace.LoaderResources.ClassNotFoundInAssembly">
  97. <summary>
  98. Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the class &apos;{1}&apos; was not found in assembly &apos;{2}&apos;..
  99. </summary>
  100. </member>
  101. <member name="P:SharedResourceNamespace.LoaderResources.Exception_AttributeNameConflict">
  102. <summary>
  103. Looks up a localized string similar to The OwinStartup attribute discovered in assembly &apos;{0}&apos; referencing startup type &apos;{1}&apos; conflicts with the attribute in assembly &apos;{2}&apos; referencing startup type &apos;{3}&apos; because they have the same FriendlyName &apos;{4}&apos;. Remove or rename one of the attributes, or reference the desired type directly..
  104. </summary>
  105. </member>
  106. <member name="P:SharedResourceNamespace.LoaderResources.Exception_StartupTypeConflict">
  107. <summary>
  108. Looks up a localized string similar to The discovered startup type &apos;{0}&apos; conflicts with the type &apos;{1}&apos;. Remove or rename one of the types, or reference the desired type directly..
  109. </summary>
  110. </member>
  111. <member name="P:SharedResourceNamespace.LoaderResources.FriendlyNameMismatch">
  112. <summary>
  113. Looks up a localized string similar to The OwinStartupAttribute.FriendlyName value &apos;{0}&apos; does not match the given value &apos;{1}&apos; in Assembly &apos;{2}&apos;..
  114. </summary>
  115. </member>
  116. <member name="P:SharedResourceNamespace.LoaderResources.MethodNotFoundInClass">
  117. <summary>
  118. Looks up a localized string similar to No &apos;{0}&apos; method was found in class &apos;{1}&apos;..
  119. </summary>
  120. </member>
  121. <member name="P:SharedResourceNamespace.LoaderResources.NoAssemblyWithStartupClass">
  122. <summary>
  123. Looks up a localized string similar to No assembly found containing a Startup or [AssemblyName].Startup class..
  124. </summary>
  125. </member>
  126. <member name="P:SharedResourceNamespace.LoaderResources.NoOwinStartupAttribute">
  127. <summary>
  128. Looks up a localized string similar to No assembly found containing an OwinStartupAttribute..
  129. </summary>
  130. </member>
  131. <member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyEmpty">
  132. <summary>
  133. Looks up a localized string similar to The OwinStartupAttribute.StartupType value is empty in Assembly &apos;{0}&apos;..
  134. </summary>
  135. </member>
  136. <member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyMissing">
  137. <summary>
  138. Looks up a localized string similar to The type &apos;{0}&apos; referenced from assembly &apos;{1}&apos; does not define a property &apos;StartupType&apos; of type &apos;Type&apos;..
  139. </summary>
  140. </member>
  141. <member name="P:SharedResourceNamespace.LoaderResources.TypeOrMethodNotFound">
  142. <summary>
  143. Looks up a localized string similar to The given type or method &apos;{0}&apos; was not found. Try specifying the Assembly..
  144. </summary>
  145. </member>
  146. <member name="P:SharedResourceNamespace.LoaderResources.UnexpectedMethodSignature">
  147. <summary>
  148. Looks up a localized string similar to The &apos;{0}&apos; method on class &apos;{1}&apos; does not have the expected signature &apos;void {0}(IAppBuilder)&apos;..
  149. </summary>
  150. </member>
  151. <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator">
  152. <summary>
  153. Used to instantiate the server factory.
  154. </summary>
  155. </member>
  156. <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator">
  157. <summary>
  158. Used to instantiate the server factory.
  159. </summary>
  160. </member>
  161. <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator.Activate(System.Type)">
  162. <summary>
  163. Instantiate an instance of the given type.
  164. </summary>
  165. <param name="type"></param>
  166. <returns></returns>
  167. </member>
  168. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator.#ctor(System.IServiceProvider)">
  169. <summary>
  170. </summary>
  171. <param name="services"></param>
  172. </member>
  173. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator.Activate(System.Type)">
  174. <summary>
  175. Instantiate an instance of the given type.
  176. </summary>
  177. <param name="type"></param>
  178. <returns></returns>
  179. </member>
  180. <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader">
  181. <summary>
  182. Located and loads the server factory.
  183. </summary>
  184. </member>
  185. <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader">
  186. <summary>
  187. Used to locate and load the named server factory.
  188. </summary>
  189. </member>
  190. <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader.Load(System.String)">
  191. <summary>
  192. Used to locate and load the named server factory.
  193. </summary>
  194. <param name="serverName"></param>
  195. <returns></returns>
  196. </member>
  197. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader.#ctor(Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator)">
  198. <summary>
  199. Allows for a Dependency Injection activator to be specified.
  200. </summary>
  201. <param name="activator"></param>
  202. </member>
  203. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader.Load(System.String)">
  204. <summary>
  205. Executes the loader, searching for the server factory by name.
  206. Acceptable inputs:
  207. - Assembly.Name. Look for type Assembly.Name.ServerFactory in the assembly Assembly.Name.
  208. - Assembly.Name.FactoryName. Look for type Assembly.Name.FactoryName in the assembly Assembly.Name.
  209. </summary>
  210. <param name="serverName">The name of the assembly and type of the server factory</param>
  211. <returns></returns>
  212. </member>
  213. <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter">
  214. <summary>
  215. The basic ServerFactory contract.
  216. </summary>
  217. </member>
  218. <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter.Initialize(Owin.IAppBuilder)">
  219. <summary>
  220. An optional method that allows the server factory to specify its capabilities.
  221. </summary>
  222. <param name="builder"></param>
  223. </member>
  224. <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter.Create(Owin.IAppBuilder)">
  225. <summary>
  226. Starts a server with the given app instance.
  227. </summary>
  228. <param name="builder"></param>
  229. <returns></returns>
  230. </member>
  231. <member name="T:Microsoft.Owin.Hosting.Loader.AppLoader">
  232. <summary>
  233. Attempts to find the entry point for an app.
  234. </summary>
  235. </member>
  236. <member name="T:Microsoft.Owin.Hosting.Loader.IAppLoader">
  237. <summary>
  238. Attempts to find the entry point for an app.
  239. </summary>
  240. </member>
  241. <member name="M:Microsoft.Owin.Hosting.Loader.IAppLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
  242. <summary>
  243. Attempts to find the entry point for a given configuration string.
  244. </summary>
  245. <param name="appName"></param>
  246. <param name="errors"></param>
  247. <returns></returns>
  248. </member>
  249. <member name="M:Microsoft.Owin.Hosting.Loader.AppLoader.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Owin.Hosting.Loader.IAppLoaderFactory})">
  250. <summary>
  251. </summary>
  252. <param name="providers"></param>
  253. </member>
  254. <member name="M:Microsoft.Owin.Hosting.Loader.AppLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
  255. <summary>
  256. Attempts to find the entry point for a given configuration string.
  257. </summary>
  258. <param name="appName"></param>
  259. <param name="errors"></param>
  260. <returns></returns>
  261. </member>
  262. <member name="T:Microsoft.Owin.Hosting.Resources">
  263. <summary>
  264. A strongly-typed resource class, for looking up localized strings, etc.
  265. </summary>
  266. </member>
  267. <member name="P:Microsoft.Owin.Hosting.Resources.ResourceManager">
  268. <summary>
  269. Returns the cached ResourceManager instance used by this class.
  270. </summary>
  271. </member>
  272. <member name="P:Microsoft.Owin.Hosting.Resources.Culture">
  273. <summary>
  274. Overrides the current thread's CurrentUICulture property for all
  275. resource lookups using this strongly typed resource class.
  276. </summary>
  277. </member>
  278. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_AppLoadFailure">
  279. <summary>
  280. Looks up a localized string similar to The following errors occurred while attempting to load the app..
  281. </summary>
  282. </member>
  283. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_FailedToResolveService">
  284. <summary>
  285. Looks up a localized string similar to Failed to resolve an instance of {0} from the IServiceProvider..
  286. </summary>
  287. </member>
  288. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ImproperlyFormattedSettingsFile">
  289. <summary>
  290. Looks up a localized string similar to The settings file is improperly formatted. It should consist of one name=value pair per line. Empty lines or lines beginning with &apos;#&apos; are ignored..
  291. </summary>
  292. </member>
  293. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerFactoryParameterCount">
  294. <summary>
  295. Looks up a localized string similar to The &apos;{0}&apos; Create method must take two parameters..
  296. </summary>
  297. </member>
  298. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerFactoryParameterType">
  299. <summary>
  300. Looks up a localized string similar to The &apos;{0}&apos; Create method must have a second parameter of type IDictionary&lt;string,object&gt;..
  301. </summary>
  302. </member>
  303. <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerNotFound">
  304. <summary>
  305. Looks up a localized string similar to The server factory could not be located for the given input: {0}.
  306. </summary>
  307. </member>
  308. <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter">
  309. <summary>
  310. The basic ServerFactory contract.
  311. </summary>
  312. </member>
  313. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.#ctor(System.Object)">
  314. <summary>
  315. Creates a wrapper around the given server factory instance.
  316. </summary>
  317. <param name="serverFactory"></param>
  318. </member>
  319. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.#ctor(System.Type,Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator)">
  320. <summary>
  321. Creates a wrapper around the given server factory type.
  322. </summary>
  323. <param name="serverFactoryType"></param>
  324. <param name="activator"></param>
  325. </member>
  326. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.Initialize(Owin.IAppBuilder)">
  327. <summary>
  328. Calls the optional Initialize method on the server factory.
  329. The method may be static or instance, and may accept either
  330. an IAppBuilder or the IAppBuilder.Properties IDictionary&lt;string, object&gt;.
  331. </summary>
  332. <param name="builder"></param>
  333. </member>
  334. <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.Create(Owin.IAppBuilder)">
  335. <summary>
  336. Calls the Create method on the server factory.
  337. The method may be static or instance, and may accept the AppFunc and the
  338. IAppBuilder.Properties IDictionary&lt;string, object&gt;.
  339. </summary>
  340. <param name="builder"></param>
  341. <returns></returns>
  342. </member>
  343. <member name="T:Microsoft.Owin.Hosting.Services.ActivatorUtilities">
  344. <summary>
  345. Helper code for the various activator services.
  346. </summary>
  347. </member>
  348. <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)">
  349. <summary>
  350. Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
  351. </summary>
  352. <param name="services"></param>
  353. <param name="type"></param>
  354. <returns></returns>
  355. </member>
  356. <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type)">
  357. <summary>
  358. Instantiate an object of the given type, using constructor service injection if possible.
  359. </summary>
  360. <param name="services"></param>
  361. <param name="type"></param>
  362. <returns></returns>
  363. </member>
  364. <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.CreateFactory(System.Type)">
  365. <summary>
  366. Creates a factory to instantiate a type using constructor service injection if possible.
  367. </summary>
  368. <param name="type"></param>
  369. <returns></returns>
  370. </member>
  371. <member name="T:Microsoft.Owin.Hosting.Builder.AppActivator">
  372. <summary>
  373. Used to instantiate the application entry point. e.g. the Startup class.
  374. </summary>
  375. </member>
  376. <member name="T:Microsoft.Owin.Hosting.Builder.IAppActivator">
  377. <summary>
  378. Used to instantiate the application entry point. e.g. the Startup class.
  379. </summary>
  380. </member>
  381. <member name="M:Microsoft.Owin.Hosting.Builder.IAppActivator.Activate(System.Type)">
  382. <summary>
  383. Instantiate an instance of the given type.
  384. </summary>
  385. <param name="type"></param>
  386. <returns></returns>
  387. </member>
  388. <member name="M:Microsoft.Owin.Hosting.Builder.AppActivator.#ctor(System.IServiceProvider)">
  389. <summary>
  390. Creates a new AppActivator.
  391. </summary>
  392. <param name="services"></param>
  393. </member>
  394. <member name="M:Microsoft.Owin.Hosting.Builder.AppActivator.Activate(System.Type)">
  395. <summary>
  396. Instantiate an instance of the given type, injecting any available services.
  397. </summary>
  398. <param name="type"></param>
  399. <returns></returns>
  400. </member>
  401. <member name="T:Microsoft.Owin.Hosting.Builder.AppBuilderFactory">
  402. <summary>
  403. Provides an IAppBuilder instance based on Microsoft.Owin.Builder.AppBuilder.
  404. </summary>
  405. </member>
  406. <member name="T:Microsoft.Owin.Hosting.Builder.IAppBuilderFactory">
  407. <summary>
  408. Provides an IAppBuilder instance.
  409. </summary>
  410. </member>
  411. <member name="M:Microsoft.Owin.Hosting.Builder.IAppBuilderFactory.Create">
  412. <summary>
  413. Create a new IAppBuilder instance.
  414. </summary>
  415. <returns></returns>
  416. </member>
  417. <member name="M:Microsoft.Owin.Hosting.Builder.AppBuilderFactory.Create">
  418. <summary>
  419. Create a new IAppBuilder instance based on Microsoft.Owin.Builder.AppBuilder.
  420. </summary>
  421. <returns></returns>
  422. </member>
  423. <member name="T:Microsoft.Owin.Hosting.Loader.AppLoaderFactory">
  424. <summary>
  425. Initializes a new app loader.
  426. </summary>
  427. </member>
  428. <member name="T:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory">
  429. <summary>
  430. Initializes a new app loader.
  431. </summary>
  432. </member>
  433. <member name="M:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory.Create(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
  434. <summary>
  435. Create a new chained app loader.
  436. </summary>
  437. <param name="nextLoader"></param>
  438. <returns></returns>
  439. </member>
  440. <member name="P:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory.Order">
  441. <summary>
  442. Not currently used.
  443. </summary>
  444. </member>
  445. <member name="M:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.#ctor(Microsoft.Owin.Hosting.Builder.IAppActivator)">
  446. <summary>
  447. </summary>
  448. <param name="activator"></param>
  449. </member>
  450. <member name="M:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.Create(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
  451. <summary>
  452. Create a new chained app loader.
  453. </summary>
  454. <param name="nextLoader"></param>
  455. <returns></returns>
  456. </member>
  457. <member name="P:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.Order">
  458. <summary>
  459. Not currently used.
  460. </summary>
  461. </member>
  462. <member name="T:Microsoft.Owin.Hosting.Services.ServicesFactory">
  463. <summary>
  464. Create a default ServiceProvider with input from a variety or sources.
  465. </summary>
  466. </member>
  467. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Collections.Generic.IDictionary{System.String,System.String},System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
  468. <summary>
  469. Create a default ServiceProvider with the given settings.
  470. </summary>
  471. <param name="settings"></param>
  472. <param name="configuration"></param>
  473. <returns></returns>
  474. </member>
  475. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.String,System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
  476. <summary>
  477. Create a default ServiceProvider with the given settings file.
  478. </summary>
  479. <param name="settingsFile"></param>
  480. <param name="configuration"></param>
  481. <returns></returns>
  482. </member>
  483. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
  484. <summary>
  485. Create a default ServiceProvider.
  486. </summary>
  487. <param name="configuration"></param>
  488. <returns></returns>
  489. </member>
  490. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Collections.Generic.IDictionary{System.String,System.String})">
  491. <summary>
  492. Create a default ServiceProvider with the given settings.
  493. </summary>
  494. <param name="settings"></param>
  495. <returns></returns>
  496. </member>
  497. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.String)">
  498. <summary>
  499. Create a default ServiceProvider with the given settings file.
  500. </summary>
  501. <param name="settingsFile"></param>
  502. <returns></returns>
  503. </member>
  504. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create">
  505. <summary>
  506. Create a default ServiceProvider.
  507. </summary>
  508. <returns></returns>
  509. </member>
  510. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.Collections.Generic.IDictionary{System.String,System.String},System.Action{System.Type,System.Type})">
  511. <summary>
  512. Enumerate the default service types with the given settings overrides.
  513. </summary>
  514. <param name="settings"></param>
  515. <param name="callback"></param>
  516. </member>
  517. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.String,System.Action{System.Type,System.Type})">
  518. <summary>
  519. Enumerate the default service types with the given settings file overrides.
  520. </summary>
  521. <param name="settingsFile"></param>
  522. <param name="callback"></param>
  523. </member>
  524. <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.Action{System.Type,System.Type})">
  525. <summary>
  526. Enumerate the default service types.
  527. </summary>
  528. <param name="callback"></param>
  529. </member>
  530. <member name="T:Microsoft.Owin.Hosting.Utilities.SettingsLoader">
  531. <summary>
  532. Loads settings from various locations.
  533. </summary>
  534. </member>
  535. <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromConfig">
  536. <summary>
  537. Load settings from the AppSettings section of the config file.
  538. </summary>
  539. <returns></returns>
  540. </member>
  541. <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromConfig(System.Collections.Generic.IDictionary{System.String,System.String})">
  542. <summary>
  543. Load settings from the AppSettings section of the config file.
  544. </summary>
  545. <param name="settings"></param>
  546. </member>
  547. <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromSettingsFile(System.String)">
  548. <summary>
  549. Load settings from a flat text file.
  550. </summary>
  551. <param name="settingsFile"></param>
  552. <returns></returns>
  553. </member>
  554. <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromSettingsFile(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
  555. <summary>
  556. Load settings from a flat text file.
  557. </summary>
  558. <param name="settingsFile"></param>
  559. <param name="settings"></param>
  560. </member>
  561. <member name="T:Microsoft.Owin.Hosting.Services.ServiceProviderExtensions">
  562. <summary>
  563. Extension methods for IServiceProvider.
  564. </summary>
  565. </member>
  566. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProviderExtensions.GetService``1(System.IServiceProvider)">
  567. <summary>
  568. Retrieve a service of type T from the IServiceProvider.
  569. </summary>
  570. <typeparam name="T"></typeparam>
  571. <param name="services"></param>
  572. <returns></returns>
  573. </member>
  574. <member name="T:Microsoft.Owin.Hosting.Services.ServiceProvider">
  575. <summary>
  576. The default IServiceProvider.
  577. </summary>
  578. </member>
  579. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.#ctor">
  580. <summary>
  581. </summary>
  582. </member>
  583. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.GetService(System.Type)">
  584. <summary>
  585. Gets the service object of the specified type.
  586. </summary>
  587. <param name="serviceType"></param>
  588. <returns></returns>
  589. </member>
  590. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.RemoveAll``1">
  591. <summary>
  592. Remove all occurrences of the given type from the provider.
  593. </summary>
  594. <typeparam name="T"></typeparam>
  595. <returns></returns>
  596. </member>
  597. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.RemoveAll(System.Type)">
  598. <summary>
  599. Remove all occurrences of the given type from the provider.
  600. </summary>
  601. <param name="type"></param>
  602. <returns></returns>
  603. </member>
  604. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.AddInstance``1(System.Object)">
  605. <summary>
  606. Add an instance of type TService to the list of providers.
  607. </summary>
  608. <typeparam name="TService"></typeparam>
  609. <param name="instance"></param>
  610. <returns></returns>
  611. </member>
  612. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.AddInstance(System.Type,System.Object)">
  613. <summary>
  614. Add an instance of the given type to the list of providers.
  615. </summary>
  616. <param name="service"></param>
  617. <param name="instance"></param>
  618. <returns></returns>
  619. </member>
  620. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add``2">
  621. <summary>
  622. Specify that services of the type TService should be fulfilled by the type TImplementation.
  623. </summary>
  624. <typeparam name="TService"></typeparam>
  625. <typeparam name="TImplementation"></typeparam>
  626. <returns></returns>
  627. </member>
  628. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add(System.Type,System.Type)">
  629. <summary>
  630. Specify that services of the type serviceType should be fulfilled by the type implementationType.
  631. </summary>
  632. <param name="serviceType"></param>
  633. <param name="implementationType"></param>
  634. <returns></returns>
  635. </member>
  636. <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add(System.Type,System.Func{System.Object})">
  637. <summary>
  638. Specify that services of the given type should be created with the given serviceFactory.
  639. </summary>
  640. <param name="serviceType"></param>
  641. <param name="serviceFactory"></param>
  642. <returns></returns>
  643. </member>
  644. <member name="T:Microsoft.Owin.Hosting.Tracing.TraceOutputFactory">
  645. <summary>
  646. Opens a stream writer for the given file.
  647. </summary>
  648. </member>
  649. <member name="T:Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory">
  650. <summary>
  651. Used to create the trace output.
  652. </summary>
  653. </member>
  654. <member name="M:Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory.Create(System.String)">
  655. <summary>
  656. Used to create the trace output.
  657. </summary>
  658. <param name="outputFile"></param>
  659. <returns></returns>
  660. </member>
  661. <member name="M:Microsoft.Owin.Hosting.Tracing.TraceOutputFactory.Create(System.String)">
  662. <summary>
  663. Opens a stream writer for the given file.
  664. </summary>
  665. <param name="outputFile"></param>
  666. <returns></returns>
  667. </member>
  668. <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterActivator">
  669. <summary>
  670. Instantiates instances of the IHostingStarter.
  671. </summary>
  672. </member>
  673. <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarterActivator">
  674. <summary>
  675. Instantiates instances of the IHostingStarter.
  676. </summary>
  677. </member>
  678. <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarterActivator.Activate(System.Type)">
  679. <summary>
  680. Instantiates instances of the IHostingStarter.
  681. </summary>
  682. <param name="type"></param>
  683. <returns></returns>
  684. </member>
  685. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterActivator.#ctor(System.IServiceProvider)">
  686. <summary>
  687. </summary>
  688. <param name="services"></param>
  689. </member>
  690. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterActivator.Activate(System.Type)">
  691. <summary>
  692. Instantiates instances of the IHostingStarter.
  693. </summary>
  694. <param name="type"></param>
  695. <returns></returns>
  696. </member>
  697. <member name="T:Microsoft.Owin.Hosting.Starter.DirectHostingStarter">
  698. <summary>
  699. Executes the IHostingEngine without making any changes to the current execution environment.
  700. </summary>
  701. </member>
  702. <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarter">
  703. <summary>
  704. Performs any necessary environment setup prior to executing the IHostingEngine.
  705. </summary>
  706. </member>
  707. <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
  708. <summary>
  709. Performs any necessary environment setup prior to executing the IHostingEngine.
  710. </summary>
  711. <param name="options"></param>
  712. <returns></returns>
  713. </member>
  714. <member name="M:Microsoft.Owin.Hosting.Starter.DirectHostingStarter.#ctor(Microsoft.Owin.Hosting.Engine.IHostingEngine)">
  715. <summary>
  716. </summary>
  717. <param name="engine"></param>
  718. </member>
  719. <member name="M:Microsoft.Owin.Hosting.Starter.DirectHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
  720. <summary>
  721. Executes the IHostingEngine without making any changes to the current execution environment.
  722. </summary>
  723. <param name="options"></param>
  724. <returns></returns>
  725. </member>
  726. <member name="T:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent">
  727. <summary>
  728. Used for executing the IHostingEngine in a new AppDomain.
  729. </summary>
  730. </member>
  731. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.ResolveAssembliesFromDirectory(System.String)">
  732. <summary>
  733. Registers a fallback assembly resolver that looks in the given directory.
  734. </summary>
  735. <param name="directory"></param>
  736. </member>
  737. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Start(Microsoft.Owin.Hosting.StartOptions)">
  738. <summary>
  739. Executes the IHostingEngine in a new AppDomain.
  740. </summary>
  741. <param name="options"></param>
  742. </member>
  743. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Dispose">
  744. <summary>
  745. </summary>
  746. </member>
  747. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Dispose(System.Boolean)">
  748. <summary>
  749. </summary>
  750. <param name="disposing"></param>
  751. </member>
  752. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Renewal(System.Runtime.Remoting.Lifetime.ILease)">
  753. <summary>
  754. Renews the given lease for 5 minutes.
  755. </summary>
  756. <param name="lease"></param>
  757. <returns></returns>
  758. </member>
  759. <member name="T:Microsoft.Owin.Hosting.Starter.DomainHostingStarter">
  760. <summary>
  761. Creates a new AppDomain to run the IHostingEngine in.
  762. </summary>
  763. </member>
  764. <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
  765. <summary>
  766. Creates a new AppDomain to run the IHostingEngine in.
  767. </summary>
  768. <param name="options"></param>
  769. <returns></returns>
  770. </member>
  771. <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute">
  772. <summary>
  773. This attribute is used to identify custom hosting starters that may be loaded at runtime.
  774. </summary>
  775. </member>
  776. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute.#ctor(System.Type)">
  777. <summary>
  778. </summary>
  779. <param name="hostingStarterType"></param>
  780. </member>
  781. <member name="P:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute.HostingStarterType">
  782. <summary>
  783. </summary>
  784. </member>
  785. <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarterFactory">
  786. <summary>
  787. Creates a IHostingStarter for the given identifier.
  788. </summary>
  789. </member>
  790. <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarterFactory.Create(System.String)">
  791. <summary>
  792. Creates a IHostingStarter for the given identifier.
  793. </summary>
  794. <param name="name"></param>
  795. <returns></returns>
  796. </member>
  797. <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterFactory">
  798. <summary>
  799. Selects from known hosting starters, or detects additional providers via convention.
  800. </summary>
  801. </member>
  802. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterFactory.#ctor(Microsoft.Owin.Hosting.Starter.IHostingStarterActivator)">
  803. <summary>
  804. </summary>
  805. <param name="hostingStarterActivator"></param>
  806. </member>
  807. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterFactory.Create(System.String)">
  808. <summary>
  809. Selects from known hosting starters, or detects additional providers via convention.
  810. </summary>
  811. <param name="name"></param>
  812. <returns></returns>
  813. </member>
  814. <member name="T:Microsoft.Owin.Hosting.WebApp">
  815. <summary>
  816. These methods are used to load, assemble, and start a web app.
  817. </summary>
  818. </member>
  819. <member name="M:Microsoft.Owin.Hosting.WebApp.Start(System.String,System.Action{Owin.IAppBuilder})">
  820. <summary>
  821. Start a web app using default settings and the given url and entry point.
  822. e.g. Discover the ServerFactory and run at the given url.
  823. </summary>
  824. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  825. </member>
  826. <member name="M:Microsoft.Owin.Hosting.WebApp.Start(Microsoft.Owin.Hosting.StartOptions,System.Action{Owin.IAppBuilder})">
  827. <summary>
  828. Start a web app using the given settings and entry point, using defaults for items not specified.
  829. </summary>
  830. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  831. </member>
  832. <member name="M:Microsoft.Owin.Hosting.WebApp.Start``1(System.String)">
  833. <summary>
  834. Start a web app using default settings and the given url and entry point type.
  835. e.g. Discover the ServerFactory and run at the given url.
  836. </summary>
  837. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  838. </member>
  839. <member name="M:Microsoft.Owin.Hosting.WebApp.Start``1(Microsoft.Owin.Hosting.StartOptions)">
  840. <summary>
  841. Start a web app using the given settings and entry point type, using defaults for items not specified.
  842. </summary>
  843. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  844. </member>
  845. <member name="M:Microsoft.Owin.Hosting.WebApp.Start(System.String)">
  846. <summary>
  847. Start a web app using the given settings and entry point type, using defaults for items not specified.
  848. </summary>
  849. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  850. </member>
  851. <member name="M:Microsoft.Owin.Hosting.WebApp.Start(Microsoft.Owin.Hosting.StartOptions)">
  852. <summary>
  853. Start a web app using the given settings and entry point type, using defaults for items not specified.
  854. </summary>
  855. <returns>An IDisposible instance that can be called to shut down the web app.</returns>
  856. </member>
  857. <member name="T:Microsoft.Owin.Hosting.StartOptions">
  858. <summary>
  859. Settings to control the startup behavior of an OWIN application
  860. </summary>
  861. </member>
  862. <member name="M:Microsoft.Owin.Hosting.StartOptions.#ctor">
  863. <summary>
  864. Initializes a new instance of the <see cref="T:Microsoft.Owin.Hosting.StartOptions"/> class
  865. </summary>
  866. </member>
  867. <member name="M:Microsoft.Owin.Hosting.StartOptions.#ctor(System.String)">
  868. <summary>
  869. Initializes a new instance of the <see cref="T:Microsoft.Owin.Hosting.StartOptions"/> class
  870. </summary>
  871. </member>
  872. <member name="P:Microsoft.Owin.Hosting.StartOptions.Urls">
  873. <summary>
  874. A list of url prefixes to listen on. Overrides port.
  875. </summary>
  876. </member>
  877. <member name="P:Microsoft.Owin.Hosting.StartOptions.Port">
  878. <summary>
  879. A port to listen on.
  880. </summary>
  881. </member>
  882. <member name="P:Microsoft.Owin.Hosting.StartOptions.AppStartup">
  883. <summary>
  884. Parameter to locate and load web application startup routine
  885. </summary>
  886. </member>
  887. <member name="P:Microsoft.Owin.Hosting.StartOptions.ServerFactory">
  888. <summary>
  889. Name of the assembly containing the http server implementation
  890. </summary>
  891. </member>
  892. <member name="P:Microsoft.Owin.Hosting.StartOptions.Settings">
  893. <summary>
  894. Optional settings used to override service types and other defaults
  895. </summary>
  896. </member>
  897. <member name="T:Microsoft.Owin.Hosting.Engine.IHostingEngine">
  898. <summary>
  899. Initializes and starts a web application.
  900. </summary>
  901. </member>
  902. <member name="M:Microsoft.Owin.Hosting.Engine.IHostingEngine.Start(Microsoft.Owin.Hosting.Engine.StartContext)">
  903. <summary>
  904. Initializes and starts a web application.
  905. </summary>
  906. <param name="context"></param>
  907. <returns></returns>
  908. </member>
  909. <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarter">
  910. <summary>
  911. Determines the which IHostingStarter instance to use via the IHostingSterterFactory.
  912. </summary>
  913. </member>
  914. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarter.#ctor(Microsoft.Owin.Hosting.Starter.IHostingStarterFactory)">
  915. <summary>
  916. </summary>
  917. <param name="hostingStarterFactory"></param>
  918. </member>
  919. <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
  920. <summary>
  921. Determines the which IHostingStarter instance to use via the IHostingSterterFactory.
  922. </summary>
  923. <param name="options"></param>
  924. <returns></returns>
  925. </member>
  926. <member name="T:Microsoft.Owin.Hosting.Engine.HostingEngine">
  927. <summary>
  928. Used to initialize and start a web application.
  929. </summary>
  930. </member>
  931. <member name="M:Microsoft.Owin.Hosting.Engine.HostingEngine.#ctor(Microsoft.Owin.Hosting.Builder.IAppBuilderFactory,Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory,Microsoft.Owin.Hosting.Loader.IAppLoader,Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader,Microsoft.Owin.Logging.ILoggerFactory)">
  932. <summary>
  933. </summary>
  934. <param name="appBuilderFactory"></param>
  935. <param name="traceOutputFactory"></param>
  936. <param name="appLoader"></param>
  937. <param name="serverFactoryLoader"></param>
  938. <param name="loggerFactory"></param>
  939. </member>
  940. <member name="M:Microsoft.Owin.Hosting.Engine.HostingEngine.Start(Microsoft.Owin.Hosting.Engine.StartContext)">
  941. <summary>
  942. Initialize and start a web application.
  943. Major Steps:
  944. - Find and initialize the ServerFactory
  945. - Find and initialize the application
  946. - Start the server
  947. </summary>
  948. <param name="context"></param>
  949. <returns></returns>
  950. </member>
  951. <member name="T:Microsoft.Owin.Hosting.Engine.StartContext">
  952. <summary>
  953. This class contains the relevant application and server state during startup.
  954. </summary>
  955. </member>
  956. <member name="M:Microsoft.Owin.Hosting.Engine.StartContext.#ctor(Microsoft.Owin.Hosting.StartOptions)">
  957. <summary>
  958. Create a new StartContext with the given options.
  959. If the given options do not define any settings, then settings will be loaded from the config.
  960. </summary>
  961. <param name="options"></param>
  962. </member>
  963. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Options">
  964. <summary>
  965. The initial options provided to the constructor.
  966. </summary>
  967. </member>
  968. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.ServerFactory">
  969. <summary>
  970. The factory used to instantiate the server.
  971. </summary>
  972. </member>
  973. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Builder">
  974. <summary>
  975. The IAppBuilder used to construct the OWIN application pipeline.
  976. </summary>
  977. </member>
  978. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.App">
  979. <summary>
  980. The constructed OWIN application pipeline.
  981. </summary>
  982. </member>
  983. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Startup">
  984. <summary>
  985. The application entry point where the pipeline is defined.
  986. </summary>
  987. </member>
  988. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.TraceOutput">
  989. <summary>
  990. A TextWriter for writing diagnostic data to.
  991. </summary>
  992. </member>
  993. <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.EnvironmentData">
  994. <summary>
  995. A list of keys and their associated values that will be injected by the host into each OWIN request environment.
  996. </summary>
  997. </member>
  998. </members>
  999. </doc>