Ejemplo n.º 1
0
 public static Response GetValues(this CoapClient _client, TradFriRequest request)
 {
     _client.UriPath = request.UriPath;
     return(_client.Get());
 }
Ejemplo n.º 2
0
 public static Response SetValues(this CoapClient _client, TradFriRequest request)
 {
     _client.UriPath = request.UriPath;
     return(_client.Put(request.Payload));
 }