Microsoft.AspNet.SignalR.SystemWeb.XML 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNet.SignalR.SystemWeb</name>
  5. </assembly>
  6. <members>
  7. <member name="M:Microsoft.AspNet.SignalR.RequestExtensions.GetHttpContext(Microsoft.AspNet.SignalR.IRequest)">
  8. <summary>
  9. Returns the <see cref="T:System.Web.HttpContextBase"/> for this <see cref="T:Microsoft.AspNet.SignalR.IRequest"/>.
  10. </summary>
  11. <param name="request">The request</param>
  12. </member>
  13. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection``1(System.Web.Routing.RouteCollection,System.String,System.String)">
  14. <summary>
  15. Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/> with the default dependency resolver to the specified path.
  16. </summary>
  17. <param name="routes">The route table.</param>
  18. <typeparam name="T">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/>.</typeparam>
  19. <param name="name">The name of the route.</param>
  20. <param name="url">path of the route.</param>
  21. <returns>The registered route.</returns>
  22. </member>
  23. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection``1(System.Web.Routing.RouteCollection,System.String,System.String,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
  24. <summary>
  25. Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/> with the default dependency resolver to the specified path.
  26. </summary>
  27. <param name="routes">The route table.</param>
  28. <typeparam name="T">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/>.</typeparam>
  29. <param name="name">The name of the route.</param>
  30. <param name="url">path of the route.</param>
  31. <param name="configuration">Configuration options.</param>
  32. <returns>The registered route.</returns>
  33. </member>
  34. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection``1(System.Web.Routing.RouteCollection,System.String,System.String,Microsoft.AspNet.SignalR.ConnectionConfiguration,System.Action{Owin.IAppBuilder})">
  35. <summary>
  36. Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/> with the default dependency resolver to the specified path.
  37. </summary>
  38. <param name="routes">The route table.</param>
  39. <typeparam name="T">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/>.</typeparam>
  40. <param name="name">The name of the route.</param>
  41. <param name="url">path of the route.</param>
  42. <param name="configuration">Configuration options.</param>
  43. <param name="build">An action to further configure the OWIN pipeline.</param>
  44. <returns>The registered route</returns>
  45. </member>
  46. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection(System.Web.Routing.RouteCollection,System.String,System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
  47. <summary>
  48. Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/> with the default dependency resolver to the specified path.
  49. </summary>
  50. <param name="routes">The route table.</param>
  51. <param name="name">The name of the route.</param>
  52. <param name="url">path of the route.</param>
  53. <param name="type">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/>.</param>
  54. <param name="configuration">Configuration options.</param>
  55. <returns>The registered route</returns>
  56. </member>
  57. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection(System.Web.Routing.RouteCollection,System.String,System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration,System.Action{Owin.IAppBuilder})">
  58. <summary>
  59. Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/> with the default dependency resolver to the specified path.
  60. </summary>
  61. <param name="routes">The route table.</param>
  62. <param name="name">The name of the route.</param>
  63. <param name="url">path of the route.</param>
  64. <param name="type">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection"/>.</param>
  65. <param name="configuration">Configuration options.</param>
  66. <param name="build">An action to further configure the OWIN pipeline.</param>
  67. <returns>The registered route</returns>.
  68. </member>
  69. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection)">
  70. <summary>
  71. Initializes the default hub route (/signalr).
  72. </summary>
  73. <param name="routes">The route table.</param>
  74. <returns>The registered route.</returns>
  75. </member>
  76. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,Microsoft.AspNet.SignalR.HubConfiguration)">
  77. <summary>
  78. Initializes the default hub route (/signalr).
  79. </summary>
  80. <param name="routes">The route table.</param>
  81. <param name="configuration">Configuration options.</param>
  82. <returns>The registered route.</returns>
  83. </member>
  84. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,System.String,Microsoft.AspNet.SignalR.HubConfiguration)">
  85. <summary>
  86. Initializes the hub route using specified configuration.
  87. </summary>
  88. <param name="routes">The route table.</param>
  89. <param name="path">The path of the hubs route.</param>
  90. <param name="configuration">Configuration options.</param>
  91. <returns>The registered route.</returns>
  92. </member>
  93. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,System.String,Microsoft.AspNet.SignalR.HubConfiguration,System.Action{Owin.IAppBuilder})">
  94. <summary>
  95. Initializes the hub route using specified configuration.
  96. </summary>
  97. <param name="routes">The route table.</param>
  98. <param name="path">The path of the hubs route.</param>
  99. <param name="configuration">Configuration options.</param>
  100. <param name="build">An action to further configure the OWIN pipeline.</param>
  101. <returns>The registered route.</returns>
  102. </member>
  103. <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,System.String,System.String,Microsoft.AspNet.SignalR.HubConfiguration,System.Action{Owin.IAppBuilder})">
  104. <summary>
  105. Initializes the hub route using specified configuration.
  106. </summary>
  107. <param name="routes">The route table.</param>
  108. <param name="name">The name of the route.</param>
  109. <param name="path">The path of the hubs route.</param>
  110. <param name="configuration">Configuration options.</param>
  111. <param name="build"></param>
  112. <returns>The registered route.</returns>
  113. </member>
  114. </members>
  115. </doc>