FLImaging 6.5.8.1
HttpUtilities.h
1#pragma once
2
11#include "FLBase.h"
12#include "FLString.h"
13
15namespace FLImaging
16{
18 namespace Base
19 {
27 class FL_EXPORT CHttpUtilities : public CFLBase
28 {
29 private:
38
39 public:
40
62 static const CResult RequestGet(const CFLString<wchar_t>& strDNS, CFLString<wchar_t>& strResult, const CFLString<wchar_t>& strObjectName = L"/", uint16_t u16Port = 80);
63
64 DeclareGetClassType();
65 };
66 }
67}
FLImaging의 최상위 기저 클래스
Definition FLBase.h:36
Template type 의 문자열 클래스
Definition INIUtilities.h:20
Http 유틸리티 클래스
Definition HttpUtilities.h:28
static const CResult RequestGet(const CFLString< wchar_t > &strDNS, CFLString< wchar_t > &strResult, const CFLString< wchar_t > &strObjectName=L"/", uint16_t u16Port=80)
HTTP-GET 을 수행
FLImaging 모듈의 수행 결과 객체
Definition ResultsDef.h:1514