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.

Microsoft.AspNet.SignalR.Client.XML 53 KiB

4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  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.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
  341. <summary>
  342. Sets LastMessageAt to the current time
  343. </summary>
  344. </member>
  345. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
  346. <summary>
  347. Sets LastActiveAt to the current time
  348. </summary>
  349. </member>
  350. <member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
  351. <summary>
  352. Default text writer
  353. </summary>
  354. </member>
  355. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
  356. <summary>
  357. Stop the connection, equivalent to calling connection.stop
  358. </summary>
  359. </member>
  360. <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
  361. <summary>
  362. Stop the connection, equivalent to calling connection.stop
  363. </summary>
  364. <param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
  365. </member>
  366. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
  367. <summary>
  368. Initializes a new instance of the HeartBeatMonitor Class
  369. </summary>
  370. <param name="connection"></param>
  371. <param name="connectionStateLock"></param>
  372. <param name="beatInterval">How often to check connection status</param>
  373. </member>
  374. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
  375. <summary>
  376. Starts the timer that triggers heartbeats
  377. </summary>
  378. </member>
  379. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
  380. <summary>
  381. Callback function for the timer which determines if we need to notify the user or attempt to reconnect
  382. </summary>
  383. </member>
  384. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
  385. <summary>
  386. Logic to determine if we need to notify the user or attempt to reconnect
  387. </summary>
  388. <param name="timeElapsed"></param>
  389. </member>
  390. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
  391. <summary>
  392. Dispose off the timer
  393. </summary>
  394. </member>
  395. <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
  396. <summary>
  397. Dispose off the timer
  398. </summary>
  399. <param name="disposing"></param>
  400. </member>
  401. <member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
  402. <summary>
  403. A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
  404. </summary>
  405. </member>
  406. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
  407. <summary>
  408. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  409. </summary>
  410. <param name="url">The url to connect to.</param>
  411. </member>
  412. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
  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. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  418. </member>
  419. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
  420. <summary>
  421. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  422. </summary>
  423. <param name="url">The url to connect to.</param>
  424. <param name="queryString">The query string data to pass to the server.</param>
  425. </member>
  426. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
  427. <summary>
  428. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  429. </summary>
  430. <param name="url">The url to connect to.</param>
  431. <param name="queryString">The query string data to pass to the server.</param>
  432. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  433. </member>
  434. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
  435. <summary>
  436. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  437. </summary>
  438. <param name="url">The url to connect to.</param>
  439. <param name="queryString">The query string data to pass to the server.</param>
  440. </member>
  441. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
  442. <summary>
  443. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
  444. </summary>
  445. <param name="url">The url to connect to.</param>
  446. <param name="queryString">The query string data to pass to the server.</param>
  447. <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
  448. </member>
  449. <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
  450. <summary>
  451. Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
  452. </summary>
  453. <param name="hubName">The name of the hub.</param>
  454. <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
  455. </member>
  456. <member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
  457. <summary>
  458. Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
  459. </summary>
  460. </member>
  461. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
  462. <summary>
  463. Gets the value of a state variable.
  464. </summary>
  465. <typeparam name="T">The type of the state variable</typeparam>
  466. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  467. <param name="name">The name of the state variable.</param>
  468. <returns>The value of the state variable.</returns>
  469. </member>
  470. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
  471. <summary>
  472. Registers for an event with the specified name and callback
  473. </summary>
  474. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  475. <param name="eventName">The name of the event.</param>
  476. <param name="onData">The callback</param>
  477. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  478. </member>
  479. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
  480. <summary>
  481. Registers for an event with the specified name and callback
  482. </summary>
  483. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  484. <param name="eventName">The name of the event.</param>
  485. <param name="onData">The callback</param>
  486. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  487. </member>
  488. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
  489. <summary>
  490. Registers for an event with the specified name and callback
  491. </summary>
  492. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  493. <param name="eventName">The name of the event.</param>
  494. <param name="onData">The callback</param>
  495. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  496. </member>
  497. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
  498. <summary>
  499. Registers for an event with the specified name and callback
  500. </summary>
  501. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  502. <param name="eventName">The name of the event.</param>
  503. <param name="onData">The callback</param>
  504. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  505. </member>
  506. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
  507. <summary>
  508. Registers for an event with the specified name and callback
  509. </summary>
  510. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  511. <param name="eventName">The name of the event.</param>
  512. <param name="onData">The callback</param>
  513. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  514. </member>
  515. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{System.Object})">
  516. <summary>
  517. Registers for an event with the specified name and callback
  518. </summary>
  519. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  520. <param name="eventName">The name of the event.</param>
  521. <param name="onData">The callback</param>
  522. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  523. </member>
  524. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``5(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4})">
  525. <summary>
  526. Registers for an event with the specified name and callback
  527. </summary>
  528. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  529. <param name="eventName">The name of the event.</param>
  530. <param name="onData">The callback</param>
  531. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  532. </member>
  533. <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})">
  534. <summary>
  535. Registers for an event with the specified name and callback
  536. </summary>
  537. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  538. <param name="eventName">The name of the event.</param>
  539. <param name="onData">The callback</param>
  540. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  541. </member>
  542. <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})">
  543. <summary>
  544. Registers for an event with the specified name and callback
  545. </summary>
  546. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
  547. <param name="eventName">The name of the event.</param>
  548. <param name="onData">The callback</param>
  549. <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
  550. </member>
  551. <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.Observe(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
  552. <summary>
  553. Registers a <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> event has an <see cref="T:IObservable{T}"/>.
  554. </summary>
  555. <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></param>
  556. <param name="eventName">The name of the event.</param>
  557. <returns>An <see cref="T:IObservable{object[]}"/>.</returns>
  558. </member>
  559. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Id">
  560. <summary>
  561. The callback identifier
  562. </summary>
  563. </member>
  564. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Data">
  565. <summary>
  566. The progress value
  567. </summary>
  568. </member>
  569. <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
  570. <summary>
  571. Represents the result of a hub invocation.
  572. </summary>
  573. </member>
  574. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
  575. <summary>
  576. The callback identifier
  577. </summary>
  578. </member>
  579. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ProgressUpdate">
  580. <summary>
  581. The progress update of the invocation
  582. </summary>
  583. </member>
  584. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
  585. <summary>
  586. The return value of the hub
  587. </summary>
  588. </member>
  589. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
  590. <summary>
  591. Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
  592. </summary>
  593. </member>
  594. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
  595. <summary>
  596. The error message returned from the hub invocation.
  597. </summary>
  598. </member>
  599. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
  600. <summary>
  601. Extra error data
  602. </summary>
  603. </member>
  604. <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
  605. <summary>
  606. The caller state from this hub.
  607. </summary>
  608. </member>
  609. <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Hubservable">
  610. <summary>
  611. <see cref="T:System.IObservable{object[]}"/> implementation of a hub event.
  612. </summary>
  613. </member>
  614. <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
  615. <summary>
  616. Represents a subscription to a hub method.
  617. </summary>
  618. </member>
  619. <member name="P:Microsoft.AspNet.SignalR.Client.IConnection.Proxy">
  620. <summary>
  621. Gets of sets proxy information for the connection.
  622. </summary>
  623. </member>
  624. <member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
  625. <summary>
  626. A client side proxy for a server side hub.
  627. </summary>
  628. </member>
  629. <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
  630. <summary>
  631. Gets or sets state on the hub.
  632. </summary>
  633. <param name="name">The name of the field.</param>
  634. <returns>The value of the field</returns>
  635. </member>
  636. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
  637. <summary>
  638. Executes a method on the server side hub asynchronously.
  639. </summary>
  640. <param name="method">The name of the method.</param>
  641. <param name="args">The arguments</param>
  642. <returns>A task that represents when invocation returned.</returns>
  643. </member>
  644. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
  645. <summary>
  646. Executes a method on the server side hub asynchronously.
  647. </summary>
  648. <typeparam name="T">The type of result returned from the hub.</typeparam>
  649. <param name="method">The name of the method.</param>
  650. <param name="args">The arguments</param>
  651. <returns>A task that represents when invocation returned.</returns>
  652. </member>
  653. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Action{``0},System.Object[])">
  654. <summary>
  655. Executes a method on the server side hub asynchronously with progress updates.
  656. </summary>
  657. <param name="method">The name of the method.</param>
  658. <param name="onProgress">The callback to invoke when progress updates are received.</param>
  659. <param name="args">The arguments</param>
  660. <returns>A task that represents when invocation returned.</returns>
  661. </member>
  662. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``2(System.String,System.Action{``1},System.Object[])">
  663. <summary>
  664. Executes a method on the server side hub asynchronously with progress updates.
  665. </summary>
  666. <typeparam name="TResult">The type of result returned from the hub.</typeparam>
  667. <typeparam name="TProgress">The type of progress update value.</typeparam>
  668. <param name="method">The name of the method.</param>
  669. <param name="onProgress">The callback to invoke when progress updates are received.</param>
  670. <param name="args">The arguments</param>
  671. <returns>A task that represents when invocation returned.</returns>
  672. </member>
  673. <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
  674. <summary>
  675. Registers an event for the hub.
  676. </summary>
  677. <param name="eventName">The name of the event</param>
  678. <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
  679. </member>
  680. <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
  681. <summary>
  682. Gets the serializer used by the connection.
  683. </summary>
  684. </member>
  685. <member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
  686. <summary>
  687. Simplifies error recognition by unwrapping complex exceptions.
  688. </summary>
  689. <param name="ex">The thrown exception.</param>
  690. <returns>An unwrapped exception in the form of a SignalRError.</returns>
  691. </member>
  692. <member name="M:Microsoft.AspNet.SignalR.Client.Infrastructure.TaskQueueMonitor.Dispose">
  693. <summary>
  694. Dispose off the timer
  695. </summary>
  696. </member>
  697. <member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
  698. <summary>
  699. Allows for thread safe invocation of a delegate.
  700. </summary>
  701. </member>
  702. <member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
  703. <summary>
  704. Represents errors that are thrown by the SignalR client
  705. </summary>
  706. </member>
  707. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
  708. <summary>
  709. Create custom SignalR based error.
  710. </summary>
  711. <param name="exception">The exception to unwrap</param>
  712. </member>
  713. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
  714. <summary>
  715. The status code of the error (if it was a WebException)
  716. </summary>
  717. </member>
  718. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
  719. <summary>
  720. The response body of the error, if it was a WebException and the response is readable
  721. </summary>
  722. </member>
  723. <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
  724. <summary>
  725. The unwrapped underlying exception
  726. </summary>
  727. </member>
  728. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
  729. <summary>
  730. Allow a SignalRError to be directly written to an output stream
  731. </summary>
  732. <returns>Exception error</returns>
  733. </member>
  734. <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
  735. <summary>
  736. Dispose of the response
  737. </summary>
  738. </member>
  739. <member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
  740. <summary>
  741. Class to store all the Keep Alive properties
  742. </summary>
  743. </member>
  744. <member name="T:Microsoft.AspNet.SignalR.Client.Resources">
  745. <summary>
  746. A strongly-typed resource class, for looking up localized strings, etc.
  747. </summary>
  748. </member>
  749. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
  750. <summary>
  751. Returns the cached ResourceManager instance used by this class.
  752. </summary>
  753. </member>
  754. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
  755. <summary>
  756. Overrides the current thread's CurrentUICulture property for all
  757. resource lookups using this strongly typed resource class.
  758. </summary>
  759. </member>
  760. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
  761. <summary>
  762. Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
  763. </summary>
  764. </member>
  765. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
  766. <summary>
  767. 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}.
  768. </summary>
  769. </member>
  770. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
  771. <summary>
  772. Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
  773. </summary>
  774. </member>
  775. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
  776. <summary>
  777. Looks up a localized string similar to The connection was stopped before it could be started..
  778. </summary>
  779. </member>
  780. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
  781. <summary>
  782. Looks up a localized string similar to The connection has not been established..
  783. </summary>
  784. </member>
  785. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
  786. <summary>
  787. 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..
  788. </summary>
  789. </member>
  790. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
  791. <summary>
  792. Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
  793. </summary>
  794. </member>
  795. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
  796. <summary>
  797. 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}..
  798. </summary>
  799. </member>
  800. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_InvalidUriScheme">
  801. <summary>
  802. 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;..
  803. </summary>
  804. </member>
  805. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_PossibleDeadlockDetected">
  806. <summary>
  807. 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..
  808. </summary>
  809. </member>
  810. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProcessResponseBeforeStart">
  811. <summary>
  812. Looks up a localized string similar to The ProcessResponse method cannot be called before the transport is started..
  813. </summary>
  814. </member>
  815. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
  816. <summary>
  817. Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
  818. </summary>
  819. </member>
  820. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectTimeout">
  821. <summary>
  822. Looks up a localized string similar to Couldn&apos;t reconnect within the configured timeout of {0}, disconnecting..
  823. </summary>
  824. </member>
  825. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectWindowTimeout">
  826. <summary>
  827. 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..
  828. </summary>
  829. </member>
  830. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
  831. <summary>
  832. Looks up a localized string similar to Server negotiation failed..
  833. </summary>
  834. </member>
  835. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_StartFailed">
  836. <summary>
  837. Looks up a localized string similar to Error during start request. Stopping the connection..
  838. </summary>
  839. </member>
  840. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
  841. <summary>
  842. Looks up a localized string similar to Request failed - task cancelled..
  843. </summary>
  844. </member>
  845. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportCannotBeReused">
  846. <summary>
  847. 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..
  848. </summary>
  849. </member>
  850. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
  851. <summary>
  852. Looks up a localized string similar to Transport failed trying to connect..
  853. </summary>
  854. </member>
  855. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
  856. <summary>
  857. Looks up a localized string similar to Transport timed out trying to connect.
  858. </summary>
  859. </member>
  860. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
  861. <summary>
  862. Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
  863. </summary>
  864. </member>
  865. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
  866. <summary>
  867. Looks up a localized string similar to Connection was disconnected before invocation result was received..
  868. </summary>
  869. </member>
  870. <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
  871. <summary>
  872. Looks up a localized string similar to Connection started reconnecting before invocation result was received..
  873. </summary>
  874. </member>
  875. <member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
  876. <summary>
  877. Represents a change in the connection state.
  878. </summary>
  879. </member>
  880. <member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
  881. <summary>
  882. Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
  883. </summary>
  884. <param name="oldState">The old state of the connection.</param>
  885. <param name="newState">The new state of the connection.</param>
  886. </member>
  887. <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
  888. <summary>
  889. Gets the old state of the connection.
  890. </summary>
  891. </member>
  892. <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
  893. <summary>
  894. Gets the new state of the connection.
  895. </summary>
  896. </member>
  897. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
  898. <summary>
  899. Invoked when the stream is open.
  900. </summary>
  901. </member>
  902. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
  903. <summary>
  904. Invoked when the reader is closed while in the Processing state.
  905. </summary>
  906. </member>
  907. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
  908. <summary>
  909. Invoked when there's a message if received in the stream.
  910. </summary>
  911. </member>
  912. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
  913. <summary>
  914. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
  915. </summary>
  916. <param name="stream">The stream to read asynchronously payloads from.</param>
  917. </member>
  918. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
  919. <summary>
  920. Starts the reader.
  921. </summary>
  922. </member>
  923. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
  924. <summary>
  925. Closes the connection and the underlying stream.
  926. </summary>
  927. </member>
  928. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
  929. <summary>
  930. Indicates whether or not the active transport supports keep alive
  931. </summary>
  932. </member>
  933. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ClientTransportBase.Name">
  934. <summary>
  935. Gets transport name.
  936. </summary>
  937. </member>
  938. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
  939. <summary>
  940. The time to wait after a connection drops to try reconnecting.
  941. </summary>
  942. </member>
  943. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
  944. <summary>
  945. The time to wait after an error happens to continue polling.
  946. </summary>
  947. </member>
  948. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
  949. <summary>
  950. Indicates whether or not the transport supports keep alive
  951. </summary>
  952. </member>
  953. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StartPolling(Microsoft.AspNet.SignalR.Client.IConnection,System.String)">
  954. <summary>
  955. Starts the polling loop.
  956. </summary>
  957. </member>
  958. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StopPolling">
  959. <summary>
  960. Fully stops the polling loop.
  961. </summary>
  962. </member>
  963. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.LostConnection(Microsoft.AspNet.SignalR.Client.IConnection)">
  964. <summary>
  965. Aborts the currently active polling request thereby forcing a reconnect.
  966. </summary>
  967. </member>
  968. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
  969. <summary>
  970. Indicates whether or not the transport supports keep alive
  971. </summary>
  972. </member>
  973. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
  974. <summary>
  975. The time to wait after a connection drops to try reconnecting.
  976. </summary>
  977. </member>
  978. <member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
  979. <summary>
  980. Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
  981. server.
  982. </summary>
  983. </member>
  984. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
  985. <summary>
  986. Invoked when there's a message if received in the stream.
  987. </summary>
  988. </member>
  989. <member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
  990. <summary>
  991. Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
  992. </summary>
  993. <param name="connection">The connection associated with this event source</param>
  994. <param name="stream">The stream to read event source payloads from.</param>
  995. </member>
  996. <member name="P:Microsoft.AspNet.SignalR.Client.Transports.WebSocketTransport.ReconnectDelay">
  997. <summary>
  998. The time to wait after a connection drops to try reconnecting.
  999. </summary>
  1000. </member>
  1001. <member name="T:Microsoft.AspNet.SignalR.Infrastructure.UrlEncoder">
  1002. <summary>
  1003. Helpers for encoding URI query components.
  1004. </summary>
  1005. </member>
  1006. <member name="T:Microsoft.AspNet.SignalR.Infrastructure.Disposer">
  1007. <summary>
  1008. Helper class to manage disposing a resource at an arbirtary time
  1009. </summary>
  1010. </member>
  1011. </members>
  1012. </doc>