summaryrefslogtreecommitdiff
path: root/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.SignalR.Common.xml
blob: 0643663e64986200d3459c74bac83d7d6a6b0794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AspNetCore.SignalR.Common</name>
    </assembly>
    <members>
        <member name="T:Microsoft.AspNetCore.SignalR.HubException">
            <summary>
            The exception thrown from a hub when an error occurs.
            </summary>
            <remarks>
            Exceptions often contain sensitive information, such as connection information. Because of this, SignalR does not expose the details
            of exceptions that occur on the server to the client. However, instances of <see cref="T:Microsoft.AspNetCore.SignalR.HubException"/> <b>are</b> sent to the client.
            </remarks>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.HubException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.HubException"/> class.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.HubException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.HubException"/> class
            with a specified error message.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.HubException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.HubException"/> class
            with a specified error message and a reference to the inner exception that is the cause of this exception.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
            <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.HubException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.HubException"/> class.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.ISignalRBuilder">
            <summary>
            A builder abstraction for configuring SignalR object instances.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.ISignalRBuilder.Services">
            <summary>
            Gets the builder service collection.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.CloseMessage">
            <summary>
            The message sent when closing a connection.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.CloseMessage.Empty">
            <summary>
            An empty close message with no error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.CloseMessage.Error">
            <summary>
            Gets the optional error message.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.CloseMessage.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.CloseMessage"/> class with an optional error message.
            </summary>
            <param name="error">An optional error message.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeProtocol">
            <summary>
            A helper class for working with SignalR handshakes.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeProtocol.WriteRequestMessage(Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage,System.Buffers.IBufferWriter{System.Byte})">
            <summary>
            Writes the serialized representation of a <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage"/> to the specified writer.
            </summary>
            <param name="requestMessage">The message to write.</param>
            <param name="output">The output writer.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeProtocol.WriteResponseMessage(Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage,System.Buffers.IBufferWriter{System.Byte})">
            <summary>
            Writes the serialized representation of a <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage"/> to the specified writer.
            </summary>
            <param name="responseMessage">The message to write.</param>
            <param name="output">The output writer.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeProtocol.TryParseResponseMessage(System.Buffers.ReadOnlySequence{System.Byte}@,Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage@)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage"/> from the specified serialized representation.
            </summary>
            <param name="buffer">The serialized representation of the message.</param>
            <param name="responseMessage">When this method returns, contains the parsed message.</param>
            <returns>A value that is <c>true</c> if the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage"/> was successfully parsed; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeProtocol.TryParseRequestMessage(System.Buffers.ReadOnlySequence{System.Byte}@,Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage@)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage"/> from the specified serialized representation.
            </summary>
            <param name="buffer">The serialized representation of the message.</param>
            <param name="requestMessage">When this method returns, contains the parsed message.</param>
            <returns>A value that is <c>true</c> if the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage"/> was successfully parsed; otherwise, <c>false</c>.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage">
            <summary>
            A handshake request message.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage.#ctor(System.String,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage"/> class.
            </summary>
            <param name="protocol">The requested protocol name.</param>
            <param name="version">The requested protocol version.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage.Protocol">
            <summary>
            Gets the requested protocol name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HandshakeRequestMessage.Version">
            <summary>
            Gets the requested protocol version.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage">
            <summary>
            A handshake response message.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage.Empty">
            <summary>
            An empty response message with no error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage.Error">
            <summary>
            Gets the optional error message.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HandshakeResponseMessage"/> class.
            An error response does need a minor version. Since the handshake has failed, any extra data will be ignored.
            </summary>
            <param name="error">Error encountered by the server, indicating why the handshake has failed.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HubInvocationMessage">
            <summary>
            A base class for hub messages related to a specific invocation.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HubInvocationMessage.Headers">
            <summary>
            Gets or sets a name/value collection of headers.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HubInvocationMessage.InvocationId">
            <summary>
            Gets the invocation ID.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HubInvocationMessage.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubInvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage">
            <summary>
            A base class for hub messages.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage">
            <summary>
            A base class for hub messages representing an invocation.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage.Target">
            <summary>
            Gets the target method name.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage.Arguments">
            <summary>
            Gets the target method arguments.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage.StreamIds">
            <summary>
            The target methods stream IDs.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage.#ctor(System.String,System.String,System.Object[],System.String[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
            <param name="streamIds">The target methods stream IDs.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage.#ctor(System.String,System.String,System.Object[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage">
            <summary>
            A hub message representing a non-streaming invocation.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.#ctor(System.String,System.Object[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage"/> class.
            </summary>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.#ctor(System.String,System.String,System.Object[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.#ctor(System.String,System.String,System.Object[],System.String[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
            <param name="streamIds">The target methods stream IDs.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.ToString">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage">
            <summary>
            A hub message representing a streaming invocation.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage.#ctor(System.String,System.String,System.Object[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage.#ctor(System.String,System.String,System.Object[],System.String[])">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="arguments">The target method arguments.</param>
            <param name="streamIds">The target methods stream IDs.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.StreamInvocationMessage.ToString">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants">
            <summary>
            Constants related to the SignalR hub protocol.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.InvocationMessageType">
            <summary>
            Represents the invocation message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.StreamItemMessageType">
            <summary>
            Represents the stream item message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.CompletionMessageType">
            <summary>
            Represents the completion message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.StreamInvocationMessageType">
            <summary>
            Represents the stream invocation message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.CancelInvocationMessageType">
            <summary>
            Represents the cancel invocation message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.PingMessageType">
            <summary>
            Represents the ping message type.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolConstants.CloseMessageType">
            <summary>
            Represents the close message type.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolExtensions">
            <summary>
            Extension methods for <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.HubProtocolExtensions.GetMessageBytes(Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol,Microsoft.AspNetCore.SignalR.Protocol.HubMessage)">
            <summary>
            Converts the specified <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage"/> to its serialized representation.
            </summary>
            <param name="hubProtocol">The hub protocol.</param>
            <param name="message">The message to convert to bytes.</param>
            <returns>The serialized representation of the specified message.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol">
            <summary>
            A protocol abstraction for communicating with SignalR hubs.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.Name">
            <summary>
            Gets the name of the protocol. The name is used by SignalR to resolve the protocol between the client and server.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.Version">
            <summary>
            Gets the major version of the protocol.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.TransferFormat">
            <summary>
            Gets the transfer format of the protocol.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.TryParseMessage(System.Buffers.ReadOnlySequence{System.Byte}@,Microsoft.AspNetCore.SignalR.IInvocationBinder,Microsoft.AspNetCore.SignalR.Protocol.HubMessage@)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage"/> from the specified serialized representation, and using the specified binder.
            </summary>
            <param name="input">The serialized representation of the message.</param>
            <param name="binder">The binder used to parse the message.</param>
            <param name="message">When this method returns <c>true</c>, contains the parsed message.</param>
            <returns>A value that is <c>true</c> if the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage"/> was successfully parsed; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.WriteMessage(Microsoft.AspNetCore.SignalR.Protocol.HubMessage,System.Buffers.IBufferWriter{System.Byte})">
            <summary>
            Writes the specified <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage"/> to a writer.
            </summary>
            <param name="message">The message to write.</param>
            <param name="output">The output writer.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.GetMessageBytes(Microsoft.AspNetCore.SignalR.Protocol.HubMessage)">
            <summary>
            Converts the specified <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.HubMessage"/> to its serialized representation.
            </summary>
            <param name="message">The message to convert.</param>
            <returns>The serialized representation of the message.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.IsVersionSupported(System.Int32)">
            <summary>
            Gets a value indicating whether the protocol supports the specified version.
            </summary>
            <param name="version">The version.</param>
            <returns>A value indicating whether the protocol supports the specified version.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage">
            <summary>
            Represents a failure to bind arguments for an invocation. This does not represent an actual
            message that is sent on the wire, it is returned by <see cref="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.TryParseMessage(System.Buffers.ReadOnlySequence{System.Byte}@,Microsoft.AspNetCore.SignalR.IInvocationBinder,Microsoft.AspNetCore.SignalR.Protocol.HubMessage@)"/>
            to indicate that a binding failure occurred when parsing an invocation. The invocation ID is associated
            so that the error can be sent back to the client, associated with the appropriate invocation ID.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage.BindingFailure">
            <summary>
            Gets the exception thrown during binding.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage.Target">
            <summary>
            Gets the target method name.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage.#ctor(System.String,System.String,System.Runtime.ExceptionServices.ExceptionDispatchInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage"/> class.
            </summary>
            <param name="invocationId">The invocation ID.</param>
            <param name="target">The target method name.</param>
            <param name="bindingFailure">The exception thrown during binding.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage">
            <summary>
            Represents a failure to bind arguments for a StreamDataMessage. This does not represent an actual
            message that is sent on the wire, it is returned by <see cref="M:Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol.TryParseMessage(System.Buffers.ReadOnlySequence{System.Byte}@,Microsoft.AspNetCore.SignalR.IInvocationBinder,Microsoft.AspNetCore.SignalR.Protocol.HubMessage@)"/>
            to indicate that a binding failure occurred when parsing a StreamDataMessage. The stream ID is associated
            so that the error can be sent to the relevant hub method.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.Id">
            <summary>
            Gets the id of the relevant stream
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.BindingFailure">
            <summary>
            Gets the exception thrown during binding.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.#ctor(System.String,System.Runtime.ExceptionServices.ExceptionDispatchInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.SignalR.Protocol.InvocationBindingFailureMessage"/> class.
            </summary>
            <param name="id">The stream ID.</param>
            <param name="bindingFailure">The exception thrown during binding.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.Internal.MemoryBufferWriter.CompletedBuffer">
            <summary>
            Holds a byte[] from the pool and a size value. Basically a Memory but guaranteed to be backed by an ArrayPool byte[], so that we know we can return it.
            </summary>
        </member>
    </members>
</doc>