TagManager.TryRemove Method

TegoOS

TagManagerTryRemove Method
Tries to remove the tag corresponding to an EPC from the collection of tags.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public bool TryRemove(
	string epc,
	out Tag tag
)
Public Function TryRemove ( 
	epc As String,
	<OutAttribute> ByRef tag As Tag
) As Boolean
public:
virtual bool TryRemove(
	String^ epc, 
	[OutAttribute] Tag^% tag
) sealed
abstract TryRemove : 
        epc : string * 
        tag : Tag byref -> bool 
override TryRemove : 
        epc : string * 
        tag : Tag byref -> bool 

Parameters

epc
Type: SystemString
EPC of tag being removed.
tag
Type: Tego.Rfid.Gen2Tag
Tag which was deleted (null if not found).

Return Value

Type: Boolean
True if tag was removed from collection of tags.

Implements

ITagManagerTryRemove(String, Tag)
See Also