Table of Contents

Class DeviceConfigExtensions

Namespace
Lers.Http.Data
Assembly
Lers.System.dll

Расширения для работы с БД настроек устройства.

public static class DeviceConfigExtensions
Inheritance
DeviceConfigExtensions
Inherited Members

Methods

GetDeviceConfig(RestClient, EntityIdentifier, DateTime, DateTime)

Возвращает параметры БД настроек устройства.

public static Task<DeviceConfigParameterValue[]> GetDeviceConfig(this RestClient client, EntityIdentifier equipmentId, DateTime start, DateTime end)

Parameters

client RestClient
equipmentId EntityIdentifier
start DateTime
end DateTime

Returns

Task<DeviceConfigParameterValue[]>

GetLatestDeviceConfig(RestClient, EntityIdentifier)

Возвращает последние параметры БД настроек устройства.

public static Task<DeviceConfigParameterValue[]> GetLatestDeviceConfig(this RestClient client, EntityIdentifier equipmentId)

Parameters

client RestClient
equipmentId EntityIdentifier

Returns

Task<DeviceConfigParameterValue[]>

ImportDeviceConfig(RestClient, IEnumerable<DeviceConfigParameterValue>)

Импортирует базу настроек устройства.

public static Task ImportDeviceConfig(this RestClient client, IEnumerable<DeviceConfigParameterValue> values)

Parameters

client RestClient
values IEnumerable<DeviceConfigParameterValue>

Returns

Task