AutoGRAPH.NET Service GetProperties — различия между версиями
Grax (обсуждение | вклад) |
Grax (обсуждение | вклад) |
||
Строка 8: | Строка 8: | ||
<ul style="/* insecure input */"> |
<ul style="/* insecure input */"> |
||
<li>schemaName – имя схемы</li> |
<li>schemaName – имя схемы</li> |
||
− | <li>deviceIDs – список идентификаторов ТС (их можно получить с помощью [http://wiki.tk-chel.ru/index.php/AutoGRAPH.NET_Service_EnumDevices EnumDevices] |
+ | <li>deviceIDs – список идентификаторов ТС (их можно получить с помощью [http://wiki.tk-chel.ru/index.php/AutoGRAPH.NET_Service_EnumDevices EnumDevices] – поле ID в классе RGroupItem)</li> |
</ul> |
</ul> |
||
Версия 20:56, 16 апреля 2015
Возвращает свойства по запрошенным ТС.
WCF
Определение:
Dictionary<Guid, RProperties> GetProperties(string schemaName, Guid[] deviceIDs)
- schemaName – имя схемы
- deviceIDs – список идентификаторов ТС (их можно получить с помощью EnumDevices – поле ID в классе RGroupItem)
Результат:
public class RProperties
{
public Guid ID { get; set; } // GUID ТС
public Dictionary<string, object> Properties { get; set; } // свойства ТС в формате "имя свойства" / значение
}
Properties.Values могут содержать разные данные - string, datetime, int, ... - в зависимости от свойства
JSON
Вызов:
http://localhost:8300/GetProperties/Demo/25f86189-adc9-445d-940c-abf860874622
Результат: скачать файл
Properties.Values могут содержать разные данные - string, datetime, int, ... - в зависимости от свойства
Свойства ТС в AutoGRAPH.NET: | |