TermModel::AddOperation Method (TermModelOperation, Int32%, array<Int32>)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Adds an operation row to a model for operations that take an array of arguments.
Namespace: Microsoft.SolverFoundation.Services
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
Public Function AddOperation ( _
op As TermModelOperation, _
<OutAttribute> ByRef vidNew As Integer, _
ParamArray vids As Integer() _
) As Boolean
public bool AddOperation(
TermModelOperation op,
out int vidNew,
params int[] vids
)
public:
virtual bool AddOperation(
TermModelOperation op,
[OutAttribute] int% vidNew,
... array<int>^ vids
) sealed
abstract AddOperation :
op:TermModelOperation *
vidNew:int byref *
vids:int[] -> bool
override AddOperation :
op:TermModelOperation *
vidNew:int byref *
vids:int[] -> bool
public final function AddOperation(
op : TermModelOperation,
vidNew : int,
... vids : int[]
) : boolean
Parameters
- op
Type: Microsoft.SolverFoundation.Services.TermModelOperation
The operation to add to the model.
- vidNew
Type: System.Int32%
The index of the new row, or the index of an existing row that has the same value as the new row.
- vids
Type: array<System.Int32>
The array of arguments.
Return Value
Type: System.Boolean
true if a new row is added; false if an existing row is re-used.
Implements
ITermModel.AddOperation(TermModelOperation, Int32%, array<Int32[])
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.