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