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

#include <NetworkData.h>

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

Public 멤버 함수

void PrintData ()
 디버그 로그에 응답 내용을 출력합니다.
 
void SetFromHttpResponse (const TSharedPtr< class IHttpResponse, ESPMode::ThreadSafe > &Response)
 HTTP 응답을 파싱해 상태 정보를 갱신합니다.
 

Public 속성

int32 status = 0
 

상세한 설명

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

멤버 함수 문서화

◆ PrintData()

void FResponseHealth::PrintData ( )

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

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

113{
114 FString OutputString;
115 FJsonObjectConverter::UStructToJsonObjectString(
116 *this,
117 OutputString,
118 0,
119 0
120 );
121 NETWORK_LOG( TEXT("[RES] %s"), *OutputString);
122}
#define NETWORK_LOG(fmt,...)

다음을 참조함 : NETWORK_LOG.

◆ SetFromHttpResponse()

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

HTTP 응답을 파싱해 상태 정보를 갱신합니다.

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

105{
106 if (Response.IsValid())
107 {
108 status = Response->GetResponseCode();
109 }
110}

다음을 참조함 : status.

멤버 데이터 문서화

◆ status

int32 FResponseHealth::status = 0

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

다음에 의해서 참조됨 : SetFromHttpResponse().


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