Share via


NegotiateProtocol.ParseResponse Methode

Definition

Überlädt

ParseResponse(Stream)
Veraltet.

Diese Methode ist veraltet und wird in einer zukünftigen Version entfernt. Die empfohlene Alternative ist ParseResponse(ReadOnlySpan<Byte>).

ParseResponse(ReadOnlySpan<Byte>)

Analysiert ein NegotiationResponse aus dem content als Json.

ParseResponse(Stream)

Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs

Achtung

This method is obsolete and will be removed in a future version. The recommended alternative is ParseResponse(ReadOnlySpan{byte}).

Diese Methode ist veraltet und wird in einer zukünftigen Version entfernt. Die empfohlene Alternative ist ParseResponse(ReadOnlySpan<Byte>).

public:
 static Microsoft::AspNetCore::Http::Connections::NegotiationResponse ^ ParseResponse(System::IO::Stream ^ content);
public static Microsoft.AspNetCore.Http.Connections.NegotiationResponse ParseResponse (System.IO.Stream content);
[System.Obsolete("This method is obsolete and will be removed in a future version. The recommended alternative is ParseResponse(ReadOnlySpan{byte}).")]
public static Microsoft.AspNetCore.Http.Connections.NegotiationResponse ParseResponse (System.IO.Stream content);
static member ParseResponse : System.IO.Stream -> Microsoft.AspNetCore.Http.Connections.NegotiationResponse
[<System.Obsolete("This method is obsolete and will be removed in a future version. The recommended alternative is ParseResponse(ReadOnlySpan{byte}).")>]
static member ParseResponse : System.IO.Stream -> Microsoft.AspNetCore.Http.Connections.NegotiationResponse
Public Shared Function ParseResponse (content As Stream) As NegotiationResponse

Parameter

content
Stream

Gibt zurück

Attribute

Gilt für:

ParseResponse(ReadOnlySpan<Byte>)

Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs
Quelle:
NegotiateProtocol.cs

Analysiert ein NegotiationResponse aus dem content als Json.

public:
 static Microsoft::AspNetCore::Http::Connections::NegotiationResponse ^ ParseResponse(ReadOnlySpan<System::Byte> content);
public static Microsoft.AspNetCore.Http.Connections.NegotiationResponse ParseResponse (ReadOnlySpan<byte> content);
static member ParseResponse : ReadOnlySpan<byte> -> Microsoft.AspNetCore.Http.Connections.NegotiationResponse
Public Shared Function ParseResponse (content As ReadOnlySpan(Of Byte)) As NegotiationResponse

Parameter

content
ReadOnlySpan<Byte>

Die Bytes einer Json-Nutzlast, die einen NegotiationResponsedarstellt.

Gibt zurück

Das analysierte NegotiationResponse.

Gilt für: