|
|
ctrlX Data Layer API for .NET 5
2.1.0
|
|
The provider node handler interface. More...
Public Member Functions | |
| void | OnBrowse (string address, IProviderNodeResult result) |
| Method to be called for a browse request. More... | |
| void | OnCreate (string address, IVariant args, IProviderNodeResult result) |
| Method to be called for a create request. More... | |
| void | OnMetadata (string address, IProviderNodeResult result) |
| Method to be called for a metadata request. More... | |
| void | OnRead (string address, IVariant args, IProviderNodeResult result) |
| Method to be called for a read request. More... | |
| void | OnRemove (string address, IProviderNodeResult result) |
| Method to be called for a remove request. More... | |
| void | OnWrite (string address, IVariant writeValue, IProviderNodeResult result) |
| Method to be called for a write request. More... | |
The provider node handler interface.
Definition at line 6 of file IProviderNodeHandler.cs.
| void OnBrowse | ( | string | address, |
| IProviderNodeResult | result | ||
| ) |
Method to be called for a browse request.
| address | Address of the node |
| result | Result of the request |
| void OnCreate | ( | string | address, |
| IVariant | args, | ||
| IProviderNodeResult | result | ||
| ) |
Method to be called for a create request.
| address | Address of the node |
| args | Optional request arguments |
| result | Result of the request |
| void OnMetadata | ( | string | address, |
| IProviderNodeResult | result | ||
| ) |
Method to be called for a metadata request.
| address | Address of the node |
| result | Result of the request |
| void OnRead | ( | string | address, |
| IVariant | args, | ||
| IProviderNodeResult | result | ||
| ) |
Method to be called for a read request.
| address | Address of the node |
| args | Optional request arguments |
| result | Result of the request |
| void OnRemove | ( | string | address, |
| IProviderNodeResult | result | ||
| ) |
Method to be called for a remove request.
| address | Address of the node |
| result | Result of the request |
| void OnWrite | ( | string | address, |
| IVariant | writeValue, | ||
| IProviderNodeResult | result | ||
| ) |
Method to be called for a write request.
| address | Address of the node |
| writeValue | Value to write |
| result | Result of the request |