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.

546 lines
32 KiB

10 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.AuthenticationResult">
  146. <summary>
  147. </summary>
  148. </member>
  149. <member name="M:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.#ctor(System.Security.Principal.IIdentity,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.Object})">
  150. <summary></summary>
  151. <param name="identity"></param>
  152. <param name="extra"></param>
  153. <param name="properties"></param>
  154. </member>
  155. <member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Identity">
  156. <summary></summary>
  157. </member>
  158. <member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Extra">
  159. <summary></summary>
  160. </member>
  161. <member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Properties">
  162. <summary></summary>
  163. </member>
  164. <member name="T:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider">
  165. <summary>
  166. Used to provide the data protection services that are derived from the MachineKey API. It is the best choice of
  167. data protection when you application is hosted by ASP.NET and all servers in the farm are running with the same Machine Key values.
  168. </summary>
  169. </member>
  170. <member name="M:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider.Create(System.String[])">
  171. <summary>
  172. Returns a new instance of IDataProtection for the provider.
  173. </summary>
  174. <param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
  175. <returns>An instance of a data protection service</returns>
  176. </member>
  177. <member name="T:System.Web.HttpContextBaseExtensions">
  178. <summary>
  179. Provides extension methods for <see cref="T:System.Web.HttpContextBase"/>.
  180. </summary>
  181. </member>
  182. <member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpContextBase)">
  183. <summary>
  184. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  185. </summary>
  186. <param name="context"></param>
  187. <returns></returns>
  188. </member>
  189. <member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpRequestBase)">
  190. <summary>
  191. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  192. </summary>
  193. <param name="request"></param>
  194. <returns></returns>
  195. </member>
  196. <member name="T:System.Web.HttpContextExtensions">
  197. <summary>
  198. Provides extension methods for <see cref="T:System.Web.HttpContext"/>.
  199. </summary>
  200. </member>
  201. <member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpContext)">
  202. <summary>
  203. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  204. </summary>
  205. <param name="context"></param>
  206. <returns></returns>
  207. </member>
  208. <member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpRequest)">
  209. <summary>
  210. Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
  211. </summary>
  212. <param name="request"></param>
  213. <returns></returns>
  214. </member>
  215. <member name="T:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler">
  216. <summary>
  217. Processes requests from System.Web as OWIN requests.
  218. </summary>
  219. </member>
  220. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.#ctor">
  221. <summary>
  222. Processes requests using the default OWIN application.
  223. </summary>
  224. </member>
  225. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
  226. <summary>
  227. Initiates an asynchronous call to the HTTP handler.
  228. </summary>
  229. <param name="httpContext">
  230. An System.Web.HttpContextBase object that provides references to intrinsic server
  231. objects (for example, Request, Response, Session, and Server) used to service
  232. HTTP requests.
  233. </param>
  234. <param name="callback">
  235. The System.AsyncCallback to call when the asynchronous method call is complete.
  236. If callback is null, the delegate is not called.
  237. </param>
  238. <param name="extraData">
  239. Any extra data needed to process the request.
  240. </param>
  241. <returns>
  242. An System.IAsyncResult that contains information about the status of the process.
  243. </returns>
  244. </member>
  245. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.EndProcessRequest(System.IAsyncResult)">
  246. <summary>
  247. Provides an asynchronous process End method when the process ends.
  248. </summary>
  249. <param name="result">
  250. An System.IAsyncResult that contains information about the status of the process.
  251. </param>
  252. </member>
  253. <member name="P:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.IsReusable">
  254. <summary>
  255. Gets a value indicating whether another request can use the System.Web.IHttpHandler instance.
  256. </summary>
  257. <returns>
  258. true.
  259. </returns>
  260. </member>
  261. <member name="T:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler">
  262. <summary>
  263. Processes a route through an OWIN pipeline.
  264. </summary>
  265. </member>
  266. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.#ctor(System.Action{Owin.IAppBuilder})">
  267. <summary>
  268. Initialize an OwinRouteHandler
  269. </summary>
  270. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  271. </member>
  272. <member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext)">
  273. <summary>
  274. Provides the object that processes the request.
  275. </summary>
  276. <returns>
  277. An object that processes the request.
  278. </returns>
  279. <param name="requestContext">An object that encapsulates information about the request.</param>
  280. </member>
  281. <member name="T:Microsoft.Owin.Host.SystemWeb.PreApplicationStart">
  282. <summary>
  283. Registers the OWIN request processing module at application startup.
  284. </summary>
  285. </member>
  286. <member name="M:Microsoft.Owin.Host.SystemWeb.PreApplicationStart.Initialize">
  287. <summary>
  288. Registers the OWIN request processing module.
  289. </summary>
  290. </member>
  291. <member name="T:Microsoft.Owin.Host.SystemWeb.Resources">
  292. <summary>
  293. A strongly-typed resource class, for looking up localized strings, etc.
  294. </summary>
  295. </member>
  296. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.ResourceManager">
  297. <summary>
  298. Returns the cached ResourceManager instance used by this class.
  299. </summary>
  300. </member>
  301. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Culture">
  302. <summary>
  303. Overrides the current thread's CurrentUICulture property for all
  304. resource lookups using this strongly typed resource class.
  305. </summary>
  306. </member>
  307. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_AppLoderFailure">
  308. <summary>
  309. Looks up a localized string similar to The following errors occurred while attempting to load the app..
  310. </summary>
  311. </member>
  312. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_CannotRegisterAfterHeadersSent">
  313. <summary>
  314. Looks up a localized string similar to Cannot register for &apos;OnSendingHeaders&apos; event after response headers have been sent..
  315. </summary>
  316. </member>
  317. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_DuplicateKey">
  318. <summary>
  319. Looks up a localized string similar to The key &apos;{0}&apos; is already present in the dictionary..
  320. </summary>
  321. </member>
  322. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToDisableAutoAppStartup">
  323. <summary>
  324. 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..
  325. </summary>
  326. </member>
  327. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToSpecifyAppStartup">
  328. <summary>
  329. 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..
  330. </summary>
  331. </member>
  332. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_UnsupportedPipelineStage">
  333. <summary>
  334. Looks up a localized string similar to The given stage &apos;{0}&apos; is not supported..
  335. </summary>
  336. </member>
  337. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.HttpContext_OwinEnvironmentNotFound">
  338. <summary>
  339. Looks up a localized string similar to No owin.Environment item was found in the context..
  340. </summary>
  341. </member>
  342. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ClientCertException">
  343. <summary>
  344. Looks up a localized string similar to An exception was thrown while trying to load the client certificate:.
  345. </summary>
  346. </member>
  347. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_EntryPointException">
  348. <summary>
  349. Looks up a localized string similar to The OWIN entry point threw an exception:.
  350. </summary>
  351. </member>
  352. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_OwinCallContextCallbackException">
  353. <summary>
  354. Looks up a localized string similar to The IAsyncResult callback for OwinCallHandler threw an exception:.
  355. </summary>
  356. </member>
  357. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RegisterModuleException">
  358. <summary>
  359. Looks up a localized string similar to Failed to register the OWIN module:.
  360. </summary>
  361. </member>
  362. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RequestDisconnectCallbackExceptions">
  363. <summary>
  364. Looks up a localized string similar to The application threw one or more exceptions when notified of a client disconnect:.
  365. </summary>
  366. </member>
  367. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownDetectionSetupException">
  368. <summary>
  369. Looks up a localized string similar to Shutdown detection setup failed:.
  370. </summary>
  371. </member>
  372. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownException">
  373. <summary>
  374. Looks up a localized string similar to One or more exceptions were thrown during app pool shutdown:.
  375. </summary>
  376. </member>
  377. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_TimerCallbackException">
  378. <summary>
  379. Looks up a localized string similar to An exception was thrown from a timer callback:.
  380. </summary>
  381. </member>
  382. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketException">
  383. <summary>
  384. Looks up a localized string similar to An exception was thrown while processing the WebSocket:.
  385. </summary>
  386. </member>
  387. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportDetected">
  388. <summary>
  389. Looks up a localized string similar to Support for WebSockets has been detected..
  390. </summary>
  391. </member>
  392. <member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportNotDetected">
  393. <summary>
  394. Looks up a localized string similar to No support for WebSockets has been detected..
  395. </summary>
  396. </member>
  397. <member name="T:System.Web.Routing.RouteCollectionExtensions">
  398. <summary>
  399. Provides extension methods for registering OWIN applications as System.Web routes.
  400. </summary>
  401. </member>
  402. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String)">
  403. <summary>
  404. Registers a route for the default OWIN application.
  405. </summary>
  406. <param name="routes">The route collection.</param>
  407. <param name="pathBase">The route path to map to the default OWIN application.</param>
  408. <returns>The created route.</returns>
  409. </member>
  410. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,``0)">
  411. <summary>
  412. Registers a route for a specific OWIN application entry point.
  413. </summary>
  414. <typeparam name="TApp">The OWIN application entry point type.</typeparam>
  415. <param name="routes">The route collection.</param>
  416. <param name="pathBase">The route path to map to the given OWIN application.</param>
  417. <param name="app">The OWIN application entry point.</param>
  418. <returns>The created route.</returns>
  419. </member>
  420. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
  421. <summary>
  422. Invokes the System.Action startup delegate to build the OWIN application
  423. and then registers a route for it on the given path.
  424. </summary>
  425. <param name="routes">The route collection.</param>
  426. <param name="pathBase">The route path to map to the given OWIN application.</param>
  427. <param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
  428. <returns>The created route.</returns>
  429. </member>
  430. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String)">
  431. <summary>
  432. Registers a route for the default OWIN application.
  433. </summary>
  434. <param name="routes">The route collection.</param>
  435. <param name="name">The given name of the route.</param>
  436. <param name="pathBase">The route path to map to the default OWIN application.</param>
  437. <returns>The created route.</returns>
  438. </member>
  439. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,System.String,``0)">
  440. <summary>
  441. Registers a route for a specific OWIN application entry point.
  442. </summary>
  443. <typeparam name="TApp">The OWIN application entry point type.</typeparam>
  444. <param name="routes">The route collection.</param>
  445. <param name="name">The given name of the route.</param>
  446. <param name="pathBase">The route path to map to the given OWIN application.</param>
  447. <param name="app">The OWIN application entry point.</param>
  448. <returns>The created route.</returns>
  449. </member>
  450. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
  451. <summary>
  452. Invokes the System.Action startup delegate to build the OWIN application
  453. and then registers a route for it on the given path.
  454. </summary>
  455. <param name="routes">The route collection.</param>
  456. <param name="name">The given name of the route.</param>
  457. <param name="pathBase">The route path to map to the given OWIN application.</param>
  458. <param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
  459. <returns>The created route.</returns>
  460. </member>
  461. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
  462. <summary>
  463. Provides a way to define routes for an OWIN pipeline.
  464. </summary>
  465. <param name="routes">The route collection.</param>
  466. <param name="routeUrl">The URL pattern for the route.</param>
  467. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  468. </member>
  469. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  470. <summary>
  471. Provides a way to define routes for an OWIN pipeline.
  472. </summary>
  473. <param name="routes">The route collection.</param>
  474. <param name="routeUrl">The URL pattern for the route.</param>
  475. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  476. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  477. </member>
  478. <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})">
  479. <summary>
  480. Provides a way to define routes for an OWIN pipeline.
  481. </summary>
  482. <param name="routes">The route collection.</param>
  483. <param name="routeUrl">The URL pattern for the route.</param>
  484. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  485. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  486. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  487. </member>
  488. <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})">
  489. <summary>
  490. Provides a way to define routes for an OWIN pipeline.
  491. </summary>
  492. <param name="routes">The route collection.</param>
  493. <param name="routeUrl">The URL pattern for the route.</param>
  494. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  495. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  496. <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>
  497. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  498. </member>
  499. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
  500. <summary>
  501. Provides a way to define routes for an OWIN pipeline.
  502. </summary>
  503. <param name="routes">The route collection.</param>
  504. <param name="routeName">The name of the route.</param>
  505. <param name="routeUrl">The URL pattern for the route.</param>
  506. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  507. </member>
  508. <member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
  509. <summary>
  510. Provides a way to define routes for an OWIN pipeline.
  511. </summary>
  512. <param name="routes">The route collection.</param>
  513. <param name="routeName">The name of the route.</param>
  514. <param name="routeUrl">The URL pattern for the route.</param>
  515. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  516. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  517. </member>
  518. <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})">
  519. <summary>
  520. Provides a way to define routes for an OWIN pipeline.
  521. </summary>
  522. <param name="routes">The route collection.</param>
  523. <param name="routeName">The name of the route.</param>
  524. <param name="routeUrl">The URL pattern for the route.</param>
  525. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  526. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  527. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  528. </member>
  529. <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})">
  530. <summary>
  531. Provides a way to define routes for an OWIN pipeline.
  532. </summary>
  533. <param name="routes">The route collection.</param>
  534. <param name="routeName">The name of the route.</param>
  535. <param name="routeUrl">The URL pattern for the route.</param>
  536. <param name="defaults">The values to use if the URL does not contain all the parameters.</param>
  537. <param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
  538. <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>
  539. <param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
  540. </member>
  541. </members>
  542. </doc>