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.
 
 
 
 
 
 

970 lines
51 KiB

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