KLingo Project Documentation 1.0.0
Unreal Engine 5.6 C++ Project Documentation
로딩중...
검색중...
일치하는것 없음
FResponseInterviewAnswer 구조체 참조

#include <NetworkData.h>

+ FResponseInterviewAnswer에 대한 협력 다이어그램:

Public 멤버 함수

void PrintData () const
 디버그 로그에 응답 내용을 출력합니다.
 
void SetFromHttpResponse (const TSharedPtr< class IHttpResponse, ESPMode::ThreadSafe > &Response)
 HTTP 응답을 파싱해 구조체를 채웁니다.
 

상세한 설명

NetworkData.h 파일의 897 번째 라인에서 정의되었습니다.

멤버 함수 문서화

◆ PrintData()

void FResponseInterviewAnswer::PrintData ( ) const

디버그 로그에 응답 내용을 출력합니다.

NetworkData.cpp 파일의 719 번째 라인에서 정의되었습니다.

720{
721 NETWORK_LOG(TEXT("[Interview Answer] Response processed successfully"));
722}
#define NETWORK_LOG(fmt,...)

다음을 참조함 : NETWORK_LOG.

◆ SetFromHttpResponse()

void FResponseInterviewAnswer::SetFromHttpResponse ( const TSharedPtr< class IHttpResponse, ESPMode::ThreadSafe > &  Response)

HTTP 응답을 파싱해 구조체를 채웁니다.

NetworkData.cpp 파일의 708 번째 라인에서 정의되었습니다.

709{
710 if (!Response.IsValid())
711 {
712 return;
713 }
714
715 FString JsonString = Response->GetContentAsString();
716 NETWORK_LOG(TEXT("[Interview Answer] Response: %s"), *JsonString);
717}

다음을 참조함 : NETWORK_LOG.


이 구조체에 대한 문서화 페이지는 다음의 파일들로부터 생성되었습니다.: