Create an Update Record Operation.


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

Syntax

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

Parameters

rec
the record to be updated.

Return Value

a new NetricsRecOp object.

Remarks

A record update operation adds a record to the ibi™ Patterns - Search table if no record with the same key exists. If a record with the same key already exists the record is replaced with the given record.

See Also