Listening Property

Whether the component should operate in server mode by listening for incoming requests.

Syntax

public bool Listening { get; set; }
Public Property Listening As Boolean

Default Value

False

Remarks

This property controls whether the component operates in server mode or client mode.

When this property is disabled (default), the component operate in client mode, allowing applications to send requests using the Get, Post, SendCustomRequest, etc. methods.

When this property is enabled, the component listens on LocalPort for incoming CoAP requests, firing the Request event anytime one arrives. Applications can service these requests directly during Request events, or send separate responses later using the SendResponse method.

Note: Applications that wish to use the component in server mode should set the LocalPort property to the desired listening port (such as 5683, the standard CoAP port) before enabling this property. Otherwise the system will choose a port at random.

This property is not available at design time.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks IoT 2020 .NET Edition - Version 20.0 [Build 8265]