다음을 통해 공유


NegotiateProtocol.ParseResponse 메서드

정의

오버로드

ParseResponse(Stream)
사용되지 않음.

이 메서드는 더 이상 사용되지 않으며 이후 버전에서 제거될 예정입니다. ParseResponse(ReadOnlySpan<Byte>)를 대신 사용하는 것이 좋습니다.

ParseResponse(ReadOnlySpan<Byte>)

에서 contentNegotiationResponse Json으로 구문 분석합니다.

ParseResponse(Stream)

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

주의

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

이 메서드는 더 이상 사용되지 않으며 이후 버전에서 제거될 예정입니다. 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

매개 변수

content
Stream

반환

특성

적용 대상

ParseResponse(ReadOnlySpan<Byte>)

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

에서 contentNegotiationResponse 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

매개 변수

content
ReadOnlySpan<Byte>

를 나타내는 Json 페이로드의 바이트입니다 NegotiationResponse.

반환

구문 분석된 NegotiationResponse입니다.

적용 대상