Partager via


NegotiateProtocol.ParseResponse Méthode

Définition

Surcharges

ParseResponse(Stream)
Obsolète.

Cette méthode est obsolète et sera supprimée dans une version ultérieure. L'alternative recommandée est ParseResponse(ReadOnlySpan<Byte>).

ParseResponse(ReadOnlySpan<Byte>)

Analyse un NegotiationResponse à partir du en content tant que Json.

ParseResponse(Stream)

Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs

Attention

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

Cette méthode est obsolète et sera supprimée dans une version ultérieure. L'alternative recommandée est 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

Paramètres

content
Stream

Retours

Attributs

S’applique à

ParseResponse(ReadOnlySpan<Byte>)

Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs
Source:
NegotiateProtocol.cs

Analyse un NegotiationResponse à partir du en content tant que 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

Paramètres

content
ReadOnlySpan<Byte>

Octets d’une charge utile Json qui représente un NegotiationResponse.

Retours

NegotiationResponse analysé.

S’applique à