CoAP.Request.MarkObserve C# (CSharp) 메소드

MarkObserve() 공개 메소드

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
리턴 Request
        public Request MarkObserve()
        {
            Observe = 0;
            return this;
        }