本文整理汇总了C#中DataSet.getNativeInstance方法的典型用法代码示例。如果您正苦于以下问题:C# DataSet.getNativeInstance方法的具体用法?C# DataSet.getNativeInstance怎么用?C# DataSet.getNativeInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataSet
的用法示例。
在下文中一共展示了DataSet.getNativeInstance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReadDataSetValues
/// <summary>
/// Read the values of a data set (GetDataSetValues service).
/// </summary>
/// <description>This function will invoke a readDataSetValues service and return a new DataSet value containing the
/// received values. If an existing instance of DataSet is provided to the function the existing instance will be
/// updated by the new values.</description>
/// <param name="dataSetReference">The object reference of the data set</param>
/// <param name="dataSet">The object reference of an existing data set instance or null</param>
/// <returns>a DataSet instance containing the received values</returns>
/// <exception cref="IedConnectionException">This exception is thrown if there is a connection or service error</exception>
public DataSet ReadDataSetValues(string dataSetReference, DataSet dataSet)
{
IntPtr nativeClientDataSet = IntPtr.Zero;
if (dataSet != null)
nativeClientDataSet = dataSet.getNativeInstance ();
int error;
nativeClientDataSet = IedConnection_readDataSetValues (connection, out error, dataSetReference, nativeClientDataSet);
if (error != 0)
throw new IedConnectionException ("Reading data set failed", error);
if (dataSet == null)
dataSet = new DataSet (nativeClientDataSet);
return dataSet;
}