AutoGRAPH.NET Service GetProperties — различия между версиями
Grax (обсуждение | вклад) |
Grax (обсуждение | вклад) |
||
Строка 27: | Строка 27: | ||
{| style="width: 100%;" |
{| style="width: 100%;" |
||
|- |
|- |
||
− | | rowspan="2" | http://wiki.tk-chel.ru/images/d/d8/AutoGRAPHNET_Service_GetProperties.png |
+ | | rowspan="2" | http://wiki.tk-chel.ru/images/d/d8/AutoGRAPHNET_Service_GetProperties.png<br/> |
| style="vertical-align: top;" | |
| style="vertical-align: top;" | |
||
Свойства ТС в AutoGRAPH.NET: |
Свойства ТС в AutoGRAPH.NET: |
||
|- |
|- |
||
− | | style="vertical-align: top; text-align: left;" | http://wiki.tk-chel.ru/images/3/38/AutoGRAPHNET_Service_GetPropertiesAG.png |
+ | | style="vertical-align: top; text-align: left;" | http://wiki.tk-chel.ru/images/3/38/AutoGRAPHNET_Service_GetPropertiesAG.png<br/> |
|} |
|} |
Версия 15:38, 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: | |