Gets the Parameters.

Namespace: ININ.IceLib.Data.TransactionBuilder
Assembly: ININ.IceLib.Data.TransactionBuilder (in ININ.IceLib.Data.TransactionBuilder.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public Collection<TransactionParameter> Parameters { get; }
Visual Basic
Public ReadOnly Property Parameters As Collection(Of TransactionParameter)
	Get

Field Value

The parameters.

Remarks

The Parameters property allows access to the list of parameters that are used for a transaction. Before a transaction is executed, a list of Parameters is constructed according to the requirements of that particular transaction. The list is contained in the TransactionData object that is passed to either the Execute(TransactionData%) method or the ExecuteAsync(TransactionData, EventHandler<(Of <<'(ExecuteCompletedEventArgs>)>>), Object) method. This list of parameters is also included in the request string that is sent to Transaction Server.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also