C# Class NSoft.NFramework.FusionCharts.Web.RealTimeDataProviderBase

Fusion Chart 의 RealTime Chart 에 실시간 Data를 제공하는 기본 HttpHandler
Inheritance: NSoft.NFramework.Web.HttpHandlers.AbstractHttpAsyncHandler
ファイルを表示 Open project: debop/NFramework

Public Properties

Property Type Description
RealTimeResponseFormat string

Protected Methods

Method Description
DoProcessRequest ( HttpContext context ) : void

HttpContext의 요청정보를 바탕으로 HttpHandler의 실제 작업을 처리하는 메소드입니다.

PopulateResponseData ( ) : string

실시간으로 데이타를 전송합니다.

Method Details

DoProcessRequest() protected method

HttpContext의 요청정보를 바탕으로 HttpHandler의 실제 작업을 처리하는 메소드입니다.
protected DoProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext
return void

PopulateResponseData() protected abstract method

실시간으로 데이타를 전송합니다.
protected abstract PopulateResponseData ( ) : string
return string

Property Details

RealTimeResponseFormat public_oe static_oe property

하나의 값: label=xxx&value=123 두종류의 값 : label=xxx&value=123|435 한종류에 대해 3개의 Data를 배치로 보낼때: label=x1,x2,x3&value=111,222,333 두종류에 대해 여러개를 배치로 보낼때: label=x1,x2,x3|y1,y2,y3&value=111,222,333|100,200,300
public static string RealTimeResponseFormat
return string