Microsoft.AspNet.SignalR.Client.XML 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNet.SignalR.Client</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient">
  8. <summary>
  9. The default <see cref="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient"/> implementation.
  10. </summary>
  11. </member>
  12. <member name="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient">
  13. <summary>
  14. A client that can make http request.
  15. </summary>
  16. </member>
  17. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
  18. <summary>
  19. Initializes the Http Clients
  20. </summary>
  21. <param name="connection">Connection</param>
  22. </member>
  23. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
  24. <summary>
  25. Makes an asynchronous http GET request to the specified url.
  26. </summary>
  27. <param name="url">The url to send the request to.</param>
  28. <param name="prepareRequest">A callback that initializes the request with default values.</param>
  29. <param name="isLongRunning">Indicates whether it is a long running request</param>
  30. <returns>A <see cref="T:Task{IResponse}"/>.</returns>
  31. </member>
  32. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
  33. <summary>
  34. Makes an asynchronous http POST request to the specified url.
  35. </summary>
  36. <param name="url">The url to send the request to.</param>
  37. <param name="prepareRequest">A callback that initializes the request with default values.</param>
  38. <param name="postData">form url encoded data.</param>
  39. <param name="isLongRunning">Indicates whether it is a long running request</param>
  40. <returns>A <see cref="T:Task{IResponse}"/>.</returns>
  41. </member>
  42. <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
  43. <summary>
  44. Initialize the Http Clients
  45. </summary>
  46. <param name="connection">Connection</param>
  47. </member>
  48. <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
  49. <summary>
  50. Makes an asynchronous http GET request to the specified url.
  51. </summary>
  52. <param name="url">The url to send the request to.</param>
  53. <param name="prepareRequest">A callback that initializes the request with default values.</param>
  54. <param name="isLongRunning">Indicates whether the request is long running</param>
  55. <returns>A <see cref="T:Task{IResponse}"/>.</returns>
  56. </member>
  57. <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
  58. <summary>
  59. Makes an asynchronous http POST request to the specified url.
  60. </summary>
  61. <param name="url">The url to send the request to.</param>
  62. <param name="prepareRequest">A callback that initializes the request with default values.</param>
  63. <param name="postData">form url encoded data.</param>
  64. <param name="isLongRunning">Indicates whether the request is long running</param>
  65. <returns>A <see cref="T:Task{IResponse}"/>.</returns>
  66. </member>
  67. <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.GetHttpClient(System.Boolean)">
  68. <summary>
  69. Returns the appropriate client based on whether it is a long running request
  70. </summary>
  71. <param name="isLongRunning">Indicates whether the request is long running</param>
  72. <returns></returns>
  73. </member>
  74. <member name="T:Microsoft.AspNet.SignalR.Client.Http.IRequest">
  75. <summary>
  76. The http request
  77. </summary>
  78. </member>
  79. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.Abort">
  80. <summary>
  81. Aborts the request.
  82. </summary>
  83. </member>
  84. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.SetRequestHeaders(System.Collections.Generic.IDictionary{System.String,System.String})">
  85. <summary>
  86. Set Request Headers
  87. </summary>
  88. <param name="headers">request headers</param>
  89. </member>
  90. <member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.UserAgent">
  91. <summary>
  92. The user agent for this request.
  93. </summary>
  94. </member>
  95. <member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.Accept">
  96. <summary>
  97. The accept header for this request.
  98. </summary>
  99. </member>
  100. <member name="T:Microsoft.AspNet.SignalR.Client.Http.IResponse">
  101. <summary>
  102. The http response.
  103. </summary>
  104. </member>
  105. <member name="M:Microsoft.AspNet.SignalR.Client.Http.IResponse.GetStream">
  106. <summary>
  107. Gets the steam that represents the response body.
  108. </summary>
  109. <returns></returns>
  110. </member>
  111. <member name="T:Microsoft.AspNet.SignalR.Client.Connection">
  112. <summary>
  113. Provides client connections for SignalR services.
  114. </summary>
  115. </member>
  116. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String)">
  117. <summary>
  118. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
  119. </summary>
  120. <param name="url">The url to connect to.</param>
  121. </member>
  122. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
  123. <summary>
  124. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
  125. </summary>
  126. <param name="url">The url to connect to.</param>
  127. <param name="queryString">The query string data to pass to the server.</param>
  128. </member>
  129. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.String)">
  130. <summary>
  131. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
  132. </summary>
  133. <param name="url">The url to connect to.</param>
  134. <param name="queryString">The query string data to pass to the server.</param>
  135. </member>
  136. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start">
  137. <summary>
  138. Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
  139. </summary>
  140. <returns>A task that represents when the connection has started.</returns>
  141. </member>
  142. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Http.IHttpClient)">
  143. <summary>
  144. Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
  145. </summary>
  146. <param name="httpClient">The http client</param>
  147. <returns>A task that represents when the connection has started.</returns>
  148. </member>
  149. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Transports.IClientTransport)">
  150. <summary>
  151. Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
  152. </summary>
  153. <param name="transport">The transport to use.</param>
  154. <returns>A task that represents when the connection has started.</returns>
  155. </member>
  156. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop">
  157. <summary>
  158. Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
  159. </summary>
  160. </member>
  161. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.Exception)">
  162. <summary>
  163. Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
  164. <param name="error">The error due to which the connection is being stopped.</param>
  165. </summary>
  166. </member>
  167. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.Exception,System.TimeSpan)">
  168. <summary>
  169. Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
  170. <param name="error">The error due to which the connection is being stopped.</param>
  171. <param name="timeout">The timeout</param>
  172. </summary>
  173. </member>
  174. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.TimeSpan)">
  175. <summary>
  176. Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
  177. <param name="timeout">The timeout</param>
  178. </summary>
  179. </member>
  180. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#Disconnect">
  181. <summary>
  182. Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> without sending an abort message to the server.
  183. This function is called after we receive a disconnect message from the server.
  184. </summary>
  185. </member>
  186. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.String)">
  187. <summary>
  188. Sends data asynchronously over the connection.
  189. </summary>
  190. <param name="data">The data to send.</param>
  191. <returns>A task that represents when the data has been sent.</returns>
  192. </member>
  193. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.Object)">
  194. <summary>
  195. Sends an object that will be JSON serialized asynchronously over the connection.
  196. </summary>
  197. <param name="value">The value to serialize.</param>
  198. <returns>A task that represents when the data has been sent.</returns>
  199. </member>
  200. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
  201. <summary>
  202. Sets LastMessageAt to the current time
  203. </summary>
  204. </member>
  205. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
  206. <summary>
  207. Sets LastActiveAt to the current time
  208. </summary>
  209. </member>
  210. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
  211. <summary>
  212. Stop the connection, equivalent to calling connection.stop
  213. </summary>
  214. </member>
  215. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
  216. <summary>
  217. Stop the connection, equivalent to calling connection.stop
  218. </summary>
  219. <param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
  220. </member>
  221. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Received">
  222. <summary>
  223. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has received data from the server.
  224. </summary>
  225. </member>
  226. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Error">
  227. <summary>
  228. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has encountered an error.
  229. </summary>
  230. </member>
  231. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Closed">
  232. <summary>
  233. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is stopped.
  234. </summary>
  235. </member>
  236. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnecting">
  237. <summary>
  238. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> starts reconnecting after an error.
  239. </summary>
  240. </member>
  241. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnected">
  242. <summary>
  243. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> successfully reconnects after a timeout.
  244. </summary>
  245. </member>
  246. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.StateChanged">
  247. <summary>
  248. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> state changes.
  249. </summary>
  250. </member>
  251. <member name="E:Microsoft.AspNet.SignalR.Client.Connection.ConnectionSlow">
  252. <summary>
  253. Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is about to timeout
  254. </summary>
  255. </member>
  256. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.TransportConnectTimeout">
  257. <summary>
  258. The amount of time a transport will wait (while connecting) before failing.
  259. This value is modified by adding the server's TransportConnectTimeout configuration value.
  260. </summary>
  261. </member>
  262. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.DeadlockErrorTimeout">
  263. <summary>
  264. Gets or sets the amount of time a callback registered with "HubProxy.On" or
  265. "Connection.Received" may run before <see cref="E:Microsoft.AspNet.SignalR.Client.Connection.Error"/> will be called
  266. warning that a possible deadlock has been detected.
  267. </summary>
  268. </member>
  269. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#TotalTransportConnectTimeout">
  270. <summary>
  271. The amount of time a transport will wait (while connecting) before failing.
  272. This is the total vaue obtained by adding the server's configuration value and the timeout specified by the user
  273. </summary>
  274. </member>
  275. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.LastError">
  276. <summary>
  277. Gets the last error encountered by the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
  278. </summary>
  279. </member>
  280. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#ReconnectWindow">
  281. <summary>
  282. The maximum amount of time a connection will allow to try and reconnect.
  283. This value is equivalent to the summation of the servers disconnect and keep alive timeout values.
  284. </summary>
  285. </member>
  286. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#KeepAliveData">
  287. <summary>
  288. Object to store the various keep alive timeout values
  289. </summary>
  290. </member>
  291. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#LastMessageAt">
  292. <summary>
  293. The timestamp of the last message received by the connection.
  294. </summary>
  295. </member>
  296. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.JsonSerializer">
  297. <summary>
  298. Gets or sets the serializer used by the connection
  299. </summary>
  300. </member>
  301. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.CookieContainer">
  302. <summary>
  303. Gets or sets the cookies associated with the connection.
  304. </summary>
  305. </member>
  306. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Credentials">
  307. <summary>
  308. Gets or sets authentication information for the connection.
  309. </summary>
  310. </member>
  311. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Headers">
  312. <summary>
  313. Gets and sets headers for the requests
  314. </summary>
  315. </member>
  316. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Url">
  317. <summary>
  318. Gets the url for the connection.
  319. </summary>
  320. </member>
  321. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.MessageId">
  322. <summary>
  323. Gets or sets the last message id for the connection.
  324. </summary>
  325. </member>
  326. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionId">
  327. <summary>
  328. Gets or sets the connection id for the connection.
  329. </summary>
  330. </member>
  331. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionToken">
  332. <summary>
  333. Gets or sets the connection token for the connection.
  334. </summary>
  335. </member>
  336. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.GroupsToken">
  337. <summary>
  338. Gets or sets the groups token for the connection.
  339. </summary>
  340. </member>
  341. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Items">
  342. <summary>
  343. Gets a dictionary for storing state for a the connection.
  344. </summary>
  345. </member>
  346. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.QueryString">
  347. <summary>
  348. Gets the querystring specified in the ctor.
  349. </summary>
  350. </member>
  351. <member name="P:Microsoft.AspNet.SignalR.Client.Connection.State">
  352. <summary>
  353. Gets the current <see cref="T:Microsoft.AspNet.SignalR.Client.ConnectionState"/> of the connection.
  354. </summary>
  355. </member>
  356. <member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
  357. <summary>
  358. Default text writer
  359. </summary>
  360. </member>
  361. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
  362. <summary>
  363. Initializes a new instance of the HeartBeatMonitor Class
  364. </summary>
  365. <param name="connection"></param>
  366. <param name="connectionStateLock"></param>
  367. <param name="beatInterval">How often to check connection status</param>
  368. </member>
  369. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
  370. <summary>
  371. Starts the timer that triggers heartbeats
  372. </summary>
  373. </member>
  374. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
  375. <summary>
  376. Callback function for the timer which determines if we need to notify the user or attempt to reconnect
  377. </summary>
  378. </member>
  379. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
  380. <summary>
  381. Logic to determine if we need to notify the user or attempt to reconnect
  382. </summary>
  383. <param name="timeElapsed"></param>
  384. </member>
  385. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
  386. <summary>
  387. Dispose off the timer
  388. </summary>
  389. </member>
  390. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
  391. <summary>
  392. Dispose off the timer
  393. </summary>
  394. <param name="disposing"></param>
  395. </member>
  396. <member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
  397. <summary>
  398. A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
  399. </summary>
  400. </member>
  401. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
  402. <summary>
  403. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  404. </summary>
  405. <param name="url">The url to connect to.</param>
  406. </member>
  407. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
  408. <summary>
  409. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  410. </summary>
  411. <param name="url">The url to connect to.</param>
  412. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  413. </member>
  414. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
  415. <summary>
  416. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  417. </summary>
  418. <param name="url">The url to connect to.</param>
  419. <param name="queryString">The query string data to pass to the server.</param>
  420. </member>
  421. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
  422. <summary>
  423. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  424. </summary>
  425. <param name="url">The url to connect to.</param>
  426. <param name="queryString">The query string data to pass to the server.</param>
  427. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  428. </member>
  429. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
  430. <summary>
  431. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  432. </summary>
  433. <param name="url">The url to connect to.</param>
  434. <param name="queryString">The query string data to pass to the server.</param>
  435. </member>
  436. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
  437. <summary>
  438. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  439. </summary>
  440. <param name="url">The url to connect to.</param>
  441. <param name="queryString">The query string data to pass to the server.</param>
  442. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  443. </member>
  444. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
  445. <summary>
  446. Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
  447. </summary>
  448. <param name="hubName">The name of the hub.</param>
  449. <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
  450. </member>
  451. <member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
  452. <summary>
  453. Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
  454. </summary>
  455. </member>
  456. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
  457. <summary>
  458. Gets the value of a state variable.
  459. </summary>
  460. <typeparam name="T">The type of the state variable</typeparam>
  461. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  462. <param name="name">The name of the state variable.</param>
  463. <returns>The value of the state variable.</returns>
  464. </member>
  465. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
  466. <summary>
  467. Registers for an event with the specified name and callback
  468. </summary>
  469. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  470. <param name="eventName">The name of the event.</param>
  471. <param name="onData">The callback</param>
  472. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  473. </member>
  474. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
  475. <summary>
  476. Registers for an event with the specified name and callback
  477. </summary>
  478. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  479. <param name="eventName">The name of the event.</param>
  480. <param name="onData">The callback</param>
  481. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  482. </member>
  483. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
  484. <summary>
  485. Registers for an event with the specified name and callback
  486. </summary>
  487. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  488. <param name="eventName">The name of the event.</param>
  489. <param name="onData">The callback</param>
  490. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  491. </member>
  492. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
  493. <summary>
  494. Registers for an event with the specified name and callback
  495. </summary>
  496. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  497. <param name="eventName">The name of the event.</param>
  498. <param name="onData">The callback</param>
  499. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  500. </member>
  501. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
  502. <summary>
  503. Registers for an event with the specified name and callback
  504. </summary>
  505. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  506. <param name="eventName">The name of the event.</param>
  507. <param name="onData">The callback</param>
  508. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  509. </member>
  510. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Id">
  511. <summary>
  512. The callback identifier
  513. </summary>
  514. </member>
  515. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Data">
  516. <summary>
  517. The progress value
  518. </summary>
  519. </member>
  520. <member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
  521. <summary>
  522. A client side proxy for a server side hub.
  523. </summary>
  524. </member>
  525. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
  526. <summary>
  527. Executes a method on the server side hub asynchronously.
  528. </summary>
  529. <param name="method">The name of the method.</param>
  530. <param name="args">The arguments</param>
  531. <returns>A task that represents when invocation returned.</returns>
  532. </member>
  533. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
  534. <summary>
  535. Executes a method on the server side hub asynchronously.
  536. </summary>
  537. <typeparam name="T">The type of result returned from the hub.</typeparam>
  538. <param name="method">The name of the method.</param>
  539. <param name="args">The arguments</param>
  540. <returns>A task that represents when invocation returned.</returns>
  541. </member>
  542. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Action{``0},System.Object[])">
  543. <summary>
  544. Executes a method on the server side hub asynchronously with progress updates.
  545. </summary>
  546. <param name="method">The name of the method.</param>
  547. <param name="onProgress">The callback to invoke when progress updates are received.</param>
  548. <param name="args">The arguments</param>
  549. <returns>A task that represents when invocation returned.</returns>
  550. </member>
  551. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``2(System.String,System.Action{``1},System.Object[])">
  552. <summary>
  553. Executes a method on the server side hub asynchronously with progress updates.
  554. </summary>
  555. <typeparam name="TResult">The type of result returned from the hub.</typeparam>
  556. <typeparam name="TProgress">The type of progress update value.</typeparam>
  557. <param name="method">The name of the method.</param>
  558. <param name="onProgress">The callback to invoke when progress updates are received.</param>
  559. <param name="args">The arguments</param>
  560. <returns>A task that represents when invocation returned.</returns>
  561. </member>
  562. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
  563. <summary>
  564. Registers an event for the hub.
  565. </summary>
  566. <param name="eventName">The name of the event</param>
  567. <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
  568. </member>
  569. <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
  570. <summary>
  571. Gets or sets state on the hub.
  572. </summary>
  573. <param name="name">The name of the field.</param>
  574. <returns>The value of the field</returns>
  575. </member>
  576. <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
  577. <summary>
  578. Gets the serializer used by the connection.
  579. </summary>
  580. </member>
  581. <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
  582. <summary>
  583. Represents the result of a hub invocation.
  584. </summary>
  585. </member>
  586. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
  587. <summary>
  588. The callback identifier
  589. </summary>
  590. </member>
  591. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ProgressUpdate">
  592. <summary>
  593. The progress update of the invocation
  594. </summary>
  595. </member>
  596. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
  597. <summary>
  598. The return value of the hub
  599. </summary>
  600. </member>
  601. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
  602. <summary>
  603. Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
  604. </summary>
  605. </member>
  606. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
  607. <summary>
  608. The error message returned from the hub invocation.
  609. </summary>
  610. </member>
  611. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
  612. <summary>
  613. Extra error data
  614. </summary>
  615. </member>
  616. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
  617. <summary>
  618. The caller state from this hub.
  619. </summary>
  620. </member>
  621. <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
  622. <summary>
  623. Represents a subscription to a hub method.
  624. </summary>
  625. </member>
  626. <member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
  627. <summary>
  628. Simplifies error recognition by unwrapping complex exceptions.
  629. </summary>
  630. <param name="ex">The thrown exception.</param>
  631. <returns>An unwrapped exception in the form of a SignalRError.</returns>
  632. </member>
  633. <member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
  634. <summary>
  635. Represents errors that are thrown by the SignalR client
  636. </summary>
  637. </member>
  638. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
  639. <summary>
  640. Create custom SignalR based error.
  641. </summary>
  642. <param name="exception">The exception to unwrap</param>
  643. </member>
  644. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
  645. <summary>
  646. Allow a SignalRError to be directly written to an output stream
  647. </summary>
  648. <returns>Exception error</returns>
  649. </member>
  650. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
  651. <summary>
  652. Dispose of the response
  653. </summary>
  654. </member>
  655. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
  656. <summary>
  657. The status code of the error (if it was a WebException)
  658. </summary>
  659. </member>
  660. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
  661. <summary>
  662. The response body of the error, if it was a WebException and the response is readable
  663. </summary>
  664. </member>
  665. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
  666. <summary>
  667. The unwrapped underlying exception
  668. </summary>
  669. </member>
  670. <member name="M:Microsoft.AspNet.SignalR.Client.Infrastructure.TaskQueueMonitor.Dispose">
  671. <summary>
  672. Dispose off the timer
  673. </summary>
  674. </member>
  675. <member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
  676. <summary>
  677. Allows for thread safe invocation of a delegate.
  678. </summary>
  679. </member>
  680. <member name="T:Microsoft.AspNet.SignalR.Infrastructure.UrlEncoder">
  681. <summary>
  682. Helpers for encoding URI query components.
  683. </summary>
  684. </member>
  685. <member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
  686. <summary>
  687. Class to store all the Keep Alive properties
  688. </summary>
  689. </member>
  690. <member name="T:Microsoft.AspNet.SignalR.Client.Resources">
  691. <summary>
  692. A strongly-typed resource class, for looking up localized strings, etc.
  693. </summary>
  694. </member>
  695. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
  696. <summary>
  697. Returns the cached ResourceManager instance used by this class.
  698. </summary>
  699. </member>
  700. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
  701. <summary>
  702. Overrides the current thread's CurrentUICulture property for all
  703. resource lookups using this strongly typed resource class.
  704. </summary>
  705. </member>
  706. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
  707. <summary>
  708. Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
  709. </summary>
  710. </member>
  711. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
  712. <summary>
  713. Looks up a localized string similar to A client callback for event {0} with {1} argument(s) was found, however an error occurred because {2}.
  714. </summary>
  715. </member>
  716. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
  717. <summary>
  718. Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
  719. </summary>
  720. </member>
  721. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
  722. <summary>
  723. Looks up a localized string similar to The connection was stopped before it could be started..
  724. </summary>
  725. </member>
  726. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
  727. <summary>
  728. Looks up a localized string similar to The connection has not been established..
  729. </summary>
  730. </member>
  731. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
  732. <summary>
  733. Looks up a localized string similar to Data cannot be sent because the connection is in the disconnected state. Call start before sending any data..
  734. </summary>
  735. </member>
  736. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
  737. <summary>
  738. Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
  739. </summary>
  740. </member>
  741. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
  742. <summary>
  743. Looks up a localized string similar to You are using a version of the client that isn&apos;t compatible with the server. Client version {0}, server version {1}..
  744. </summary>
  745. </member>
  746. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_InvalidUriScheme">
  747. <summary>
  748. Looks up a localized string similar to Uri scheme &apos;{0}&apos; is not valid. The only valid uri schemes are &apos;http&apos; and &apos;https&apos;..
  749. </summary>
  750. </member>
  751. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_PossibleDeadlockDetected">
  752. <summary>
  753. Looks up a localized string similar to Possible deadlock detected. A callback registered with &quot;HubProxy.On&quot; or &quot;Connection.Received&quot; has been executing for at least {0} seconds..
  754. </summary>
  755. </member>
  756. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProcessResponseBeforeStart">
  757. <summary>
  758. Looks up a localized string similar to The ProcessResponse method cannot be called before the transport is started..
  759. </summary>
  760. </member>
  761. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
  762. <summary>
  763. Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
  764. </summary>
  765. </member>
  766. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectTimeout">
  767. <summary>
  768. Looks up a localized string similar to Couldn&apos;t reconnect within the configured timeout of {0}, disconnecting..
  769. </summary>
  770. </member>
  771. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectWindowTimeout">
  772. <summary>
  773. Looks up a localized string similar to The client has been inactive since {0} and it has exceeded the inactivity timeout of {1}. Stopping the connection..
  774. </summary>
  775. </member>
  776. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
  777. <summary>
  778. Looks up a localized string similar to Server negotiation failed..
  779. </summary>
  780. </member>
  781. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_StartFailed">
  782. <summary>
  783. Looks up a localized string similar to Error during start request. Stopping the connection..
  784. </summary>
  785. </member>
  786. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
  787. <summary>
  788. Looks up a localized string similar to Request failed - task cancelled..
  789. </summary>
  790. </member>
  791. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportCannotBeReused">
  792. <summary>
  793. Looks up a localized string similar to The transport instance passed to the Negotiate method has already been used. Use a new transport instance each time you start a new connection..
  794. </summary>
  795. </member>
  796. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
  797. <summary>
  798. Looks up a localized string similar to Transport failed trying to connect..
  799. </summary>
  800. </member>
  801. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
  802. <summary>
  803. Looks up a localized string similar to Transport timed out trying to connect.
  804. </summary>
  805. </member>
  806. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
  807. <summary>
  808. Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
  809. </summary>
  810. </member>
  811. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
  812. <summary>
  813. Looks up a localized string similar to Connection was disconnected before invocation result was received..
  814. </summary>
  815. </member>
  816. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
  817. <summary>
  818. Looks up a localized string similar to Connection started reconnecting before invocation result was received..
  819. </summary>
  820. </member>
  821. <member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
  822. <summary>
  823. Represents a change in the connection state.
  824. </summary>
  825. </member>
  826. <member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
  827. <summary>
  828. Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
  829. </summary>
  830. <param name="oldState">The old state of the connection.</param>
  831. <param name="newState">The new state of the connection.</param>
  832. </member>
  833. <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
  834. <summary>
  835. Gets the old state of the connection.
  836. </summary>
  837. </member>
  838. <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
  839. <summary>
  840. Gets the new state of the connection.
  841. </summary>
  842. </member>
  843. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
  844. <summary>
  845. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
  846. </summary>
  847. <param name="stream">The stream to read asynchronously payloads from.</param>
  848. </member>
  849. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
  850. <summary>
  851. Starts the reader.
  852. </summary>
  853. </member>
  854. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
  855. <summary>
  856. Closes the connection and the underlying stream.
  857. </summary>
  858. </member>
  859. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
  860. <summary>
  861. Invoked when the stream is open.
  862. </summary>
  863. </member>
  864. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
  865. <summary>
  866. Invoked when the reader is closed while in the Processing state.
  867. </summary>
  868. </member>
  869. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
  870. <summary>
  871. Invoked when there's a message if received in the stream.
  872. </summary>
  873. </member>
  874. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
  875. <summary>
  876. Indicates whether or not the active transport supports keep alive
  877. </summary>
  878. </member>
  879. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ClientTransportBase.Name">
  880. <summary>
  881. Gets transport name.
  882. </summary>
  883. </member>
  884. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StartPolling(Microsoft.AspNet.SignalR.Client.IConnection,System.String)">
  885. <summary>
  886. Starts the polling loop.
  887. </summary>
  888. </member>
  889. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StopPolling">
  890. <summary>
  891. Fully stops the polling loop.
  892. </summary>
  893. </member>
  894. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.LostConnection(Microsoft.AspNet.SignalR.Client.IConnection)">
  895. <summary>
  896. Aborts the currently active polling request thereby forcing a reconnect.
  897. </summary>
  898. </member>
  899. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
  900. <summary>
  901. The time to wait after a connection drops to try reconnecting.
  902. </summary>
  903. </member>
  904. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
  905. <summary>
  906. The time to wait after an error happens to continue polling.
  907. </summary>
  908. </member>
  909. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
  910. <summary>
  911. Indicates whether or not the transport supports keep alive
  912. </summary>
  913. </member>
  914. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
  915. <summary>
  916. Indicates whether or not the transport supports keep alive
  917. </summary>
  918. </member>
  919. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
  920. <summary>
  921. The time to wait after a connection drops to try reconnecting.
  922. </summary>
  923. </member>
  924. <member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
  925. <summary>
  926. Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
  927. server.
  928. </summary>
  929. </member>
  930. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
  931. <summary>
  932. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
  933. </summary>
  934. <param name="connection">The connection associated with this event source</param>
  935. <param name="stream">The stream to read event source payloads from.</param>
  936. </member>
  937. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
  938. <summary>
  939. Invoked when there's a message if received in the stream.
  940. </summary>
  941. </member>
  942. <member name="T:Microsoft.AspNet.SignalR.Infrastructure.Disposer">
  943. <summary>
  944. Helper class to manage disposing a resource at an arbirtary time
  945. </summary>
  946. </member>
  947. </members>
  948. </doc>