CoAP.Request.MarkObserve C# (CSharp) Method

MarkObserve() public method

Sets CoAP's observe option. If the target resource of this request responds with a success code and also sets the observe option, it will send more responses in the future whenever the resource's state changes.
public MarkObserve ( ) : Request
return Request
        public Request MarkObserve()
        {
            Observe = 0;
            return this;
        }