Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Integration Service

OthersClient

  • Last UpdatedJul 27, 2026
  • 1 minute read

Namespace: AVEVA.IntegrationService.DataAPI.SDK

Interface: IOthersClient

Description: OthersClient is used to communicate with Other ProductCategory products that don't fit into specific categories.

Methods

OthersClient uses all methods from the BaseClient (see Common Methods section below).

Example:

var othersClient = dataApiClient.OthersClient;

// Get datasource

var datasource = await othersClient.GetDataSource("MyOtherDataSource");

// Get tables

DataTable tables = await othersClient.GetTables("MyOtherDataSource");

// Get table data

DataTable data = await othersClient.GetTableData(

"MyOtherDataSource",

"CustomDataTable"

);

// Post data

DataTable customData = new DataTable("CustomDataTable");

customData.Columns.Add("Field", typeof(string));

customData.Rows.Add("Custom Value");

AcknowledgementResult result = await othersClient.PostTableData(

"MyOtherDataSource",

"CustomDataTable",

customData,

""

);

Related Links