Reader.Execute Method

TegoOS

ReaderExecute 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 IList<TagResponse> Execute(
	ISelection selection,
	IList<Operation> operations,
	ExecutionSettings settings,
	int population
)
Public Function Execute ( 
	selection As ISelection,
	operations As IList(Of Operation),
	settings As ExecutionSettings,
	population As Integer
) As IList(Of TagResponse)
public:
IList<TagResponse^>^ Execute(
	ISelection^ selection, 
	IList<Operation^>^ operations, 
	ExecutionSettings^ settings, 
	int population
)
member 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).
Remarks
Execute, ExecuteAsync and StartExecution methods are thread safe.
See Also