|
ITimeSeriesDataService.ReadRangeCurrentTimeSeriesDataAsJson Method
|
Reads current time-series data from the
Archive and sends it in
Json format.
Namespace: GSF.Historian.DataServicesAssembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.246-beta
Syntax[OperationContractAttribute]
[WebGetAttribute(ResponseFormat = WebMessageFormat.Json, UriTemplate = "/timeseriesdata/read/current/{fromID}-{toID}/json")]
SerializableTimeSeriesData ReadRangeCurrentTimeSeriesDataAsJson(
string fromID,
string toID
)
<OperationContractAttribute>
<WebGetAttribute(ResponseFormat := WebMessageFormat.Json, UriTemplate := "/timeseriesdata/read/current/{fromID}-{toID}/json")>
Function ReadRangeCurrentTimeSeriesDataAsJson (
fromID As String,
toID As String
) As SerializableTimeSeriesData
[OperationContractAttribute]
[WebGetAttribute(ResponseFormat = WebMessageFormat::Json, UriTemplate = L"/timeseriesdata/read/current/{fromID}-{toID}/json")]
SerializableTimeSeriesData^ ReadRangeCurrentTimeSeriesDataAsJson(
String^ fromID,
String^ toID
)
[<OperationContractAttribute>]
[<WebGetAttribute(ResponseFormat = WebMessageFormat.Json, UriTemplate = "/timeseriesdata/read/current/{fromID}-{toID}/json")>]
abstract ReadRangeCurrentTimeSeriesDataAsJson :
fromID : string *
toID : string -> SerializableTimeSeriesData
function ReadRangeCurrentTimeSeriesDataAsJson(fromID, toID);
View SourceParameters
- fromID String
- Starting ID in the ID range for which current time-series data is to be read.
- toID String
- Ending ID in the ID range for which current time-series data is to be read.
Return Value
SerializableTimeSeriesDataAn
SerializableTimeSeriesData object.
See Also