Click or drag to resize

IWebConfigurationClient Interface

Interface for clients that can be added to the web configuration. This allows for a flexible system where different types of clients can be implemented and added to the configuration without modifying the core code. Each client must implement this interface to ensure it has the necessary methods for initialization, connection, and disconnection.

Namespace: Emulate3D.WebConfiguration
Assembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntax
C#
public interface IWebConfigurationClient

The IWebConfigurationClient type exposes the following members.

Properties
 NameDescription
Public propertyAutoConnect When true, automatically connect the client when the document loads.
Public propertyName The name of the service
Top
Methods
 NameDescription
Public methodConnectAsync Connect to the client. This should establish any necessary connections or listeners for the client to function.
Public methodDisconnectAsync Disconnects the current connection to the remote server or resource.
Public methodInitialize Initializes the client connection, this will be called before connect.
Top
See Also