Microsoft.AspNet.SignalR.Client.XML 54 KB

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