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.
 
 
 
 
 
 

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