ReaderImplementation.Execute Method

TegoOS

ReaderImplementationExecute Method
Synchronously execute a list of operations on selected tags.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public abstract IList<TagResponse> Execute(
	ISelection selection,
	IList<Operation> operations,
	ExecutionSettings settings,
	int population
)
Public MustOverride Function Execute ( 
	selection As ISelection,
	operations As IList(Of Operation),
	settings As ExecutionSettings,
	population As Integer
) As IList(Of TagResponse)
public:
virtual IList<TagResponse^>^ Execute(
	ISelection^ selection, 
	IList<Operation^>^ operations, 
	ExecutionSettings^ settings, 
	int population
) abstract
abstract Execute : 
        selection : ISelection * 
        operations : IList<Operation> * 
        settings : ExecutionSettings * 
        population : int -> IList<TagResponse> 

Parameters

selection
Type: Tego.Rfid.Gen2ISelection
Selection criteria for tags.
operations
Type: System.Collections.GenericIListOperation
Operations to execute.
settings
Type: Tego.Rfid.Gen2ExecutionSettings
Execution settings including e.g. session, triggers, etc.
population
Type: SystemInt32
Expected number of tags being targeted.

Return Value

Type: IListTagResponse
List of TagResponse objects for tags, containing an OperationResponse for successful operations (and first error).

Implements

IReaderImplementationExecute(ISelection, IListOperation, ExecutionSettings, Int32)
See Also