AutoGRAPH.NET Service GetProperties — различия между версиями
Admin (обсуждение | вклад) |
Grax (обсуждение | вклад) |
||
Строка 3: | Строка 3: | ||
== WCF == |
== WCF == |
||
− | Определение:<syntaxhighlight lang="csharp"> |
+ | Определение: <syntaxhighlight lang="csharp"> |
Dictionary<Guid, RProperties> GetProperties(string schemaName, Guid[] deviceIDs) |
Dictionary<Guid, RProperties> GetProperties(string schemaName, Guid[] deviceIDs) |
||
</syntaxhighlight> |
</syntaxhighlight> |
||
<ul style="/* insecure input */"> |
<ul style="/* insecure input */"> |
||
− | <li>schemaName |
+ | <li>schemaName – имя схемы</li> |
− | <li>deviceIDs |
+ | <li>deviceIDs – список идентификаторов ТС (их можно получить с помощью [http://wiki.tk-chel.ru/index.php/AutoGRAPH.NET_Service_EnumDevices EnumDevices] - поле ID в классе RGroupItem)</li> |
</ul> |
</ul> |
||
− | Результат:<syntaxhighlight lang="csharp"> |
+ | Результат: <syntaxhighlight lang="csharp"> |
public class RProperties |
public class RProperties |
||
{ |
{ |
||
Строка 21: | Строка 21: | ||
== JSON == |
== JSON == |
||
− | Вызов: |
+ | Вызов: <pre>http://localhost:8300/GetProperties/Demo/25f86189-adc9-445d-940c-abf860874622</pre> |
− | Результат: [[Media:GetProperties-result.json.txt|скачать файл]]<br/><span style="font-size: |
+ | Результат: [[Media:GetProperties-result.json.txt|скачать файл]]<br/><span style="font-size: smaller">Properties.Values могут содержать разные данные - string, datetime, int, ... - в зависимости от свойства</span> |
{| style="width: 100%;" |
{| style="width: 100%;" |
Версия 15:16, 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: | |