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.

639 lines
37 KiB

4 years ago
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Owin.Host.SystemWeb</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.Host.SystemWeb.SystemWebChunkingCookieManager">
  146. <summary>
  147. This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them
  148. from requests. The cookies are stored in the System.Web object model rather than directly in the headers.
  149. </summary>
  150. </member>
  151. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.#ctor">
  152. <summary>
  153. This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them
  154. from requests. The cookies are stored in the System.Web object model rather than directly in the headers.
  155. </summary>
  156. </member>
  157. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.GetRequestCookie(Microsoft.Owin.IOwinContext,System.String)">
  158. <summary>
  159. Get the reassembled cookie. Non chunked cookies are returned normally.
  160. Cookies with missing chunks just have their "chunks:XX" header returned.
  161. </summary>
  162. <param name="context"></param>
  163. <param name="key"></param>
  164. <returns>The reassembled cookie, if any, or null.</returns>
  165. </member>
  166. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.AppendResponseCookie(Microsoft.Owin.IOwinContext,System.String,System.String,Microsoft.Owin.CookieOptions)">
  167. <summary>
  168. Appends a new response cookie to the Set-Cookie header. If the cookie is larger than the given size limit
  169. then it will be broken down into multiple cookies as follows:
  170. Set-Cookie: CookieName=chunks:3; path=/
  171. Set-Cookie: CookieNameC1=Segment1; path=/
  172. Set-Cookie: CookieNameC2=Segment2; path=/
  173. Set-Cookie: CookieNameC3=Segment3; path=/
  174. </summary>
  175. <param name="context"></param>
  176. <param name="key"></param>
  177. <param name="value"></param>
  178. <param name="options"></param>
  179. </member>
  180. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.DeleteCookie(Microsoft.Owin.IOwinContext,System.String,Microsoft.Owin.CookieOptions)">
  181. <summary>
  182. Deletes the cookie with the given key by setting an expired state. If a matching chunked cookie exists on
  183. the request, delete each chunk.
  184. </summary>
  185. <param name="context"></param>
  186. <param name="key"></param>
  187. <param name="options"></param>
  188. </member>
  189. <member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.Fallback">
  190. <summary>
  191. A fallback manager used if HttpContextBase can't be located.
  192. </summary>
  193. </member>
  194. <member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.ChunkSize">
  195. <summary>
  196. The maximum size of cookie to send back to the client. If a cookie exceeds this size it will be broken down into multiple
  197. cookies. Set this value to null to disable this behavior. The default is 4090 characters, which is supported by all
  198. common browsers.
  199. Note that browsers may also have limits on the total size of all cookies per domain, and on the number of cookies per domain.
  200. </summary>
  201. </member>
  202. <member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.ThrowForPartialCookies">
  203. <summary>
  204. Throw if not all chunks of a cookie are available on a request for re-assembly.
  205. </summary>
  206. </member>
  207. <member name="T:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider">
  208. <summary>
  209. Used to provide the data protection services that are derived from the MachineKey API. It is the best choice of
  210. data protection when you application is hosted by ASP.NET and all servers in the farm are running with the same Machine Key values.
  211. </summary>
  212. </member>
  213. <member name="M:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider.Create(System.String[])">
  214. <summary>
  215. Returns a new instance of IDataProtection for the provider.
  216. </summary>
  217. <param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
  218. <returns>An instance of a data protection service</returns>
  219. </member>
  220. <member name="T:System.Web.HttpContextBaseExtensions">
  221. <summary>
  222. Provides extension methods for <see cref="T:System.Web.HttpContextBase"/>.
  223. </summary>
  224. </member>
  225. <member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpContextBase)">
  226. <summary>
  227. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  228. </summary>
  229. <param name="context"></param>
  230. <returns></returns>
  231. </member>
  232. <member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpRequestBase)">
  233. <summary>
  234. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  235. </summary>
  236. <param name="request"></param>
  237. <returns></returns>
  238. </member>
  239. <member name="T:System.Web.HttpContextExtensions">
  240. <summary>
  241. Provides extension methods for <see cref="T:System.Web.HttpContext"/>.
  242. </summary>
  243. </member>
  244. <member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpContext)">
  245. <summary>
  246. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  247. </summary>
  248. <param name="context"></param>
  249. <returns></returns>
  250. </member>
  251. <member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpRequest)">
  252. <summary>
  253. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  254. </summary>
  255. <param name="request"></param>
  256. <returns></returns>
  257. </member>
  258. <member name="T:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler">
  259. <summary>
  260. Processes requests from System.Web as OWIN requests.
  261. </summary>
  262. </member>
  263. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.#ctor">
  264. <summary>
  265. Processes requests using the default OWIN application.
  266. </summary>
  267. </member>
  268. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
  269. <summary>
  270. Initiates an asynchronous call to the HTTP handler.
  271. </summary>
  272. <param name="httpContext">
  273. An System.Web.HttpContextBase object that provides references to intrinsic server
  274. objects (for example, Request, Response, Session, and Server) used to service
  275. HTTP requests.
  276. </param>
  277. <param name="callback">
  278. The System.AsyncCallback to call when the asynchronous method call is complete.
  279. If callback is null, the delegate is not called.
  280. </param>
  281. <param name="extraData">
  282. Any extra data needed to process the request.
  283. </param>
  284. <returns>
  285. An System.IAsyncResult that contains information about the status of the process.
  286. </returns>
  287. </member>
  288. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.EndProcessRequest(System.IAsyncResult)">
  289. <summary>
  290. Provides an asynchronous process End method when the process ends.
  291. </summary>
  292. <param name="result">
  293. An System.IAsyncResult that contains information about the status of the process.
  294. </param>
  295. </member>
  296. <member name="P:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.IsReusable">
  297. <summary>
  298. Gets a value indicating whether another request can use the System.Web.IHttpHandler instance.
  299. </summary>
  300. <returns>
  301. true.
  302. </returns>
  303. </member>
  304. <member name="T:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler">
  305. <summary>
  306. Processes a route through an OWIN pipeline.
  307. </summary>
  308. </member>
  309. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.#ctor(System.Action{Owin.IAppBuilder})">
  310. <summary>
  311. Initialize an OwinRouteHandler
  312. </summary>
  313. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  314. </member>
  315. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext)">
  316. <summary>
  317. Provides the object that processes the request.
  318. </summary>
  319. <returns>
  320. An object that processes the request.
  321. </returns>
  322. <param name="requestContext">An object that encapsulates information about the request.</param>
  323. </member>
  324. <member name="T:Microsoft.Owin.Host.SystemWeb.PreApplicationStart">
  325. <summary>
  326. Registers the OWIN request processing module at application startup.
  327. </summary>
  328. </member>
  329. <member name="M:Microsoft.Owin.Host.SystemWeb.PreApplicationStart.Initialize">
  330. <summary>
  331. Registers the OWIN request processing module.
  332. </summary>
  333. </member>
  334. <member name="T:Microsoft.Owin.Host.SystemWeb.Resources">
  335. <summary>
  336. A strongly-typed resource class, for looking up localized strings, etc.
  337. </summary>
  338. </member>
  339. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.ResourceManager">
  340. <summary>
  341. Returns the cached ResourceManager instance used by this class.
  342. </summary>
  343. </member>
  344. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Culture">
  345. <summary>
  346. Overrides the current thread's CurrentUICulture property for all
  347. resource lookups using this strongly typed resource class.
  348. </summary>
  349. </member>
  350. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_AppLoderFailure">
  351. <summary>
  352. Looks up a localized string similar to The following errors occurred while attempting to load the app..
  353. </summary>
  354. </member>
  355. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_CannotRegisterAfterHeadersSent">
  356. <summary>
  357. Looks up a localized string similar to Cannot register for &apos;OnSendingHeaders&apos; event after response headers have been sent..
  358. </summary>
  359. </member>
  360. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_CookieLimitTooSmall">
  361. <summary>
  362. Looks up a localized string similar to The cookie key and options are larger than ChunksSize, leaving no room for data..
  363. </summary>
  364. </member>
  365. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_DuplicateKey">
  366. <summary>
  367. Looks up a localized string similar to The key &apos;{0}&apos; is already present in the dictionary..
  368. </summary>
  369. </member>
  370. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToDisableAutoAppStartup">
  371. <summary>
  372. Looks up a localized string similar to To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of &quot;false&quot; in your web.config..
  373. </summary>
  374. </member>
  375. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToSpecifyAppStartup">
  376. <summary>
  377. Looks up a localized string similar to To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config..
  378. </summary>
  379. </member>
  380. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_ImcompleteChunkedCookie">
  381. <summary>
  382. Looks up a localized string similar to The chunked cookie is incomplete. Only {0} of the expected {1} chunks were found, totaling {2} characters. A client size limit may have been exceeded..
  383. </summary>
  384. </member>
  385. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_UnsupportedPipelineStage">
  386. <summary>
  387. Looks up a localized string similar to The given stage &apos;{0}&apos; is not supported..
  388. </summary>
  389. </member>
  390. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.HttpContext_OwinEnvironmentNotFound">
  391. <summary>
  392. Looks up a localized string similar to No owin.Environment item was found in the context..
  393. </summary>
  394. </member>
  395. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ClientCertException">
  396. <summary>
  397. Looks up a localized string similar to An exception was thrown while trying to load the client certificate:.
  398. </summary>
  399. </member>
  400. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_EntryPointException">
  401. <summary>
  402. Looks up a localized string similar to The OWIN entry point threw an exception:.
  403. </summary>
  404. </member>
  405. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_OwinCallContextCallbackException">
  406. <summary>
  407. Looks up a localized string similar to The IAsyncResult callback for OwinCallHandler threw an exception:.
  408. </summary>
  409. </member>
  410. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RegisterModuleException">
  411. <summary>
  412. Looks up a localized string similar to Failed to register the OWIN module:.
  413. </summary>
  414. </member>
  415. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RequestDisconnectCallbackExceptions">
  416. <summary>
  417. Looks up a localized string similar to The application threw one or more exceptions when notified of a client disconnect:.
  418. </summary>
  419. </member>
  420. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownDetectionSetupException">
  421. <summary>
  422. Looks up a localized string similar to Shutdown detection setup failed:.
  423. </summary>
  424. </member>
  425. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownException">
  426. <summary>
  427. Looks up a localized string similar to One or more exceptions were thrown during app pool shutdown:.
  428. </summary>
  429. </member>
  430. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_TimerCallbackException">
  431. <summary>
  432. Looks up a localized string similar to An exception was thrown from a timer callback:.
  433. </summary>
  434. </member>
  435. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketException">
  436. <summary>
  437. Looks up a localized string similar to An exception was thrown while processing the WebSocket:.
  438. </summary>
  439. </member>
  440. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportDetected">
  441. <summary>
  442. Looks up a localized string similar to Support for WebSockets has been detected..
  443. </summary>
  444. </member>
  445. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportNotDetected">
  446. <summary>
  447. Looks up a localized string similar to No support for WebSockets has been detected..
  448. </summary>
  449. </member>
  450. <member name="T:System.Web.Routing.RouteCollectionExtensions">
  451. <summary>
  452. Provides extension methods for registering OWIN applications as System.Web routes.
  453. </summary>
  454. </member>
  455. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String)">
  456. <summary>
  457. Registers a route for the default OWIN application.
  458. </summary>
  459. <param name="routes">The route collection.</param>
  460. <param name="pathBase">The route path to map to the default OWIN application.</param>
  461. <returns>The created route.</returns>
  462. </member>
  463. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,``0)">
  464. <summary>
  465. Registers a route for a specific OWIN application entry point.
  466. </summary>
  467. <typeparam name="TApp">The OWIN application entry point type.</typeparam>
  468. <param name="routes">The route collection.</param>
  469. <param name="pathBase">The route path to map to the given OWIN application.</param>
  470. <param name="app">The OWIN application entry point.</param>
  471. <returns>The created route.</returns>
  472. </member>
  473. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
  474. <summary>
  475. Invokes the System.Action startup delegate to build the OWIN application
  476. and then registers a route for it on the given path.
  477. </summary>
  478. <param name="routes">The route collection.</param>
  479. <param name="pathBase">The route path to map to the given OWIN application.</param>
  480. <param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
  481. <returns>The created route.</returns>
  482. </member>
  483. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String)">
  484. <summary>
  485. Registers a route for the default OWIN application.
  486. </summary>
  487. <param name="routes">The route collection.</param>
  488. <param name="name">The given name of the route.</param>
  489. <param name="pathBase">The route path to map to the default OWIN application.</param>
  490. <returns>The created route.</returns>
  491. </member>
  492. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,System.String,``0)">
  493. <summary>
  494. Registers a route for a specific OWIN application entry point.
  495. </summary>
  496. <typeparam name="TApp">The OWIN application entry point type.</typeparam>
  497. <param name="routes">The route collection.</param>
  498. <param name="name">The given name of the route.</param>
  499. <param name="pathBase">The route path to map to the given OWIN application.</param>
  500. <param name="app">The OWIN application entry point.</param>
  501. <returns>The created route.</returns>
  502. </member>
  503. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
  504. <summary>
  505. Invokes the System.Action startup delegate to build the OWIN application
  506. and then registers a route for it on the given path.
  507. </summary>
  508. <param name="routes">The route collection.</param>
  509. <param name="name">The given name of the route.</param>
  510. <param name="pathBase">The route path to map to the given OWIN application.</param>
  511. <param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
  512. <returns>The created route.</returns>
  513. </member>
  514. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
  515. <summary>
  516. Provides a way to define routes for an OWIN pipeline.
  517. </summary>
  518. <param name="routes">The route collection.</param>
  519. <param name="routeUrl">The URL pattern for the route.</param>
  520. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  521. </member>
  522. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  523. <summary>
  524. Provides a way to define routes for an OWIN pipeline.
  525. </summary>
  526. <param name="routes">The route collection.</param>
  527. <param name="routeUrl">The URL pattern for the route.</param>
  528. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  529. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  530. </member>
  531. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  532. <summary>
  533. Provides a way to define routes for an OWIN pipeline.
  534. </summary>
  535. <param name="routes">The route collection.</param>
  536. <param name="routeUrl">The URL pattern for the route.</param>
  537. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  538. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  539. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  540. </member>
  541. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  542. <summary>
  543. Provides a way to define routes for an OWIN pipeline.
  544. </summary>
  545. <param name="routes">The route collection.</param>
  546. <param name="routeUrl">The URL pattern for the route.</param>
  547. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  548. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  549. <param name="dataTokens">Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request.</param>
  550. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  551. </member>
  552. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
  553. <summary>
  554. Provides a way to define routes for an OWIN pipeline.
  555. </summary>
  556. <param name="routes">The route collection.</param>
  557. <param name="routeName">The name of the route.</param>
  558. <param name="routeUrl">The URL pattern for the route.</param>
  559. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  560. </member>
  561. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  562. <summary>
  563. Provides a way to define routes for an OWIN pipeline.
  564. </summary>
  565. <param name="routes">The route collection.</param>
  566. <param name="routeName">The name of the route.</param>
  567. <param name="routeUrl">The URL pattern for the route.</param>
  568. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  569. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  570. </member>
  571. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  572. <summary>
  573. Provides a way to define routes for an OWIN pipeline.
  574. </summary>
  575. <param name="routes">The route collection.</param>
  576. <param name="routeName">The name of the route.</param>
  577. <param name="routeUrl">The URL pattern for the route.</param>
  578. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  579. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  580. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  581. </member>
  582. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  583. <summary>
  584. Provides a way to define routes for an OWIN pipeline.
  585. </summary>
  586. <param name="routes">The route collection.</param>
  587. <param name="routeName">The name of the route.</param>
  588. <param name="routeUrl">The URL pattern for the route.</param>
  589. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  590. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  591. <param name="dataTokens">Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request.</param>
  592. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  593. </member>
  594. <member name="T:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager">
  595. <summary>
  596. An implementation of ICookieManager that uses the System.Web.HttpContextBase object model.
  597. </summary>
  598. </member>
  599. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.#ctor">
  600. <summary>
  601. Creates a new instance of SystemWebCookieManager.
  602. </summary>
  603. </member>
  604. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.GetRequestCookie(Microsoft.Owin.IOwinContext,System.String)">
  605. <summary>
  606. Reads the requested cookie from System.Web.HttpContextBase.Request.Cookies.
  607. </summary>
  608. <param name="context"></param>
  609. <param name="key"></param>
  610. <returns></returns>
  611. </member>
  612. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.AppendResponseCookie(Microsoft.Owin.IOwinContext,System.String,System.String,Microsoft.Owin.CookieOptions)">
  613. <summary>
  614. Appends the requested cookie to System.Web.HttpContextBase.Response.Cookies.
  615. </summary>
  616. <param name="context"></param>
  617. <param name="key"></param>
  618. <param name="value"></param>
  619. <param name="options"></param>
  620. </member>
  621. <member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.DeleteCookie(Microsoft.Owin.IOwinContext,System.String,Microsoft.Owin.CookieOptions)">
  622. <summary>
  623. Deletes the requested cookie by appending an expired cookie to System.Web.HttpContextBase.Response.Cookies.
  624. </summary>
  625. <param name="context"></param>
  626. <param name="key"></param>
  627. <param name="options"></param>
  628. </member>
  629. <member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.Fallback">
  630. <summary>
  631. A fallback manager used if HttpContextBase can't be located.
  632. </summary>
  633. </member>
  634. </members>
  635. </doc>