how connect to server - smeshlink/CoAP.NET GitHub Wiki

Server must be running for example if your pc ip is:192.168.70.50 then

Request request = new Request(Method.GET); request.URI = new Uri("coap://192.168.70.50:5683/hello"); request.Send();

        // wait for one response
        Response response = request.WaitForResponse();