Create a Delete Record Operation.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Del( _ 
   ByVal rec As NetricsRecord _ 
) As NetricsRecOp
C#
public static NetricsRecOp Del(
   NetricsRecord rec
)
C++
public:
 static NetricsRecOp Del(
   NetricsRecord rec
)
J#
public static NetricsRecOp Del(
   NetricsRecord rec
)
JScript
public static  function Del(
   rec : NetricsRecord
) : NetricsRecOp

Parameters

rec
the record to be deleted.

Return Value

a new NetricsRecOp object.

Remarks

A record delete operation deletes an existing record in the ibi Patterns table. It is an error if a record with the same key doesn't exist. If the do max work flag is set the error is quietly ignored.

See Also