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