Fix dwordList demo

This commit is contained in:
Lucio Maranta
2019-04-01 15:44:32 +00:00
parent 636032419e
commit ecd802100e
5 changed files with 36 additions and 247 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ namespace Nc_Demo_Application.Server.Service
[WebGet(UriTemplate = "binary_memory/integer/{index}/list/{number}", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
void GetIntegerList(string index, string number, out List<int> byteList);
[WebGet(UriTemplate = "binary_memory//{index}/list/{number}", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
[WebGet(UriTemplate = "binary_memory/{index}/list/{number}", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
void GetDWordList(string index, string number, out List<uint> byteList);
[WebInvoke(Method = "PUT", UriTemplate = "binary_memory/byte/{index}/list", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)]