<< Click to Display Table of Contents >>
IsHTTPStore
데이터 스토어가 HTTP 스토어인지 여부를 가져옵니다.
Prototype
bool IsHTTPStore()
Example
var ds = This.GetDataSet();
if(ds.IsHTTPStore() == true) {
_DEBUG("Return true");
} else {
_DEBUG("Return false");
}