Interface IConnectorSelection
Provides properties and methods to select and query available connectors.
Namespace: Holoride.ElasticSDK
Assembly: Holoride.ElasticSDK.StateReceivers.dll
Syntax
public interface IConnectorSelection : INotifyPropertyChanged
Properties
AvailableConnectors
Gets the list of available connector names.
Declaration
IReadOnlyList<string> AvailableConnectors { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<><string> |
SelectedConnector
Gets the name of the currently selected connector.
Declaration
string SelectedConnector { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
RequestConnectors()
Requests the list of available connectors.
Declaration
void RequestConnectors()
SelectConnector(string)
Selects a connector by its name.
Declaration
void SelectConnector(string connectorName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | connectorName | The name of the connector to select. Must not be null or empty, and should be one of the values listed in AvailableConnectors. |