Method FillArrayNoDelete
FillArrayNoDelete(SLProtocol, int, List<object[]>)
Adds the provided rows to the specified table.
[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, List<object[]> columns)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
columns
List<object[]>The columns of the table.
Returns
Remarks
- This overload is currently not supported.
- This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
- In case the column data contains null references, the corresponding cells will be cleared.
- The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
- This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
FillArrayNoDelete(SLProtocol, int, List<object[]>, DateTime?)
Adds the provided rows to the specified table.
[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, List<object[]> columns, DateTime? timeInfo)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
columns
List<object[]>The columns of the table.
timeInfo
DateTime?Timestamp
Returns
Remarks
- This overload is currently not supported.
- This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
- In case the column data contains null references, the corresponding cells will be cleared.
- The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
- This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
- From DataMiner 10.2.9 onwards (RN 33849), if the DateTime.Kind property of
timeInfo
is unspecified, the timestamp will be handled as local time.
FillArrayNoDelete(SLProtocol, int, object[])
Adds the provided rows to the specified table.
[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, object[] columns)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
columns
object[]The columns of the table.
Returns
Remarks
- This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
- In case the column data contains null references, the corresponding cells will be cleared.
- The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
- This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
FillArrayNoDelete(SLProtocol, int, object[], DateTime?)
Adds the provided rows to the specified table.
[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, object[] columns, DateTime? timeInfo)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
columns
object[]The columns of the table.
timeInfo
DateTime?Timestamp
Returns
Remarks
- This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
- In case the column data contains null references, the corresponding cells will be cleared.
- The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
- This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
- From DataMiner 10.2.9 onwards (RN 33849), if the DateTime.Kind property of
timeInfo
is unspecified, the timestamp will be handled as local time.