KLingo Project Documentation 1.0.0
Unreal Engine 5.6 C++ Project Documentation
로딩중...
검색중...
일치하는것 없음
ENetworkLogType.h
이 파일의 문서화 페이지로 가기
1// Copyright (c) 2025 Doppleddiggong. All rights reserved. Unauthorized copying, modification, or distribution of this file, via any medium is strictly prohibited. Proprietary and confidential.
2
5#pragma once
6
7#include "CoreMinimal.h"
8
10enum class ENetworkLogType : uint8
11{
12 Get,
13 Post,
14 WS,
15};
16
ENetworkLogType
네트워크 요청/응답 로그를 구분하는 타입입니다.
@ Post
HTTP POST 요청을 나타냅니다.
@ WS
WebSocket 메시지를 나타냅니다.
@ Get
HTTP GET 요청을 나타냅니다.