Share via


RFIDDataEventArgs Constructors

Definition

Overloads

RFIDDataEventArgs(RFIDTag)

Creates an instance of the RFIDDataEventArgs class by using the tag parameter.

RFIDDataEventArgs(ICollection<RFIDTag>)

Creates an instance of the RFIDDataEventArgs class by using the currentTags parameter.

RFIDDataEventArgs(Byte[], Byte[], DateTime)

Creates an instance of the RFIDDataEventArgs class by using the id, data, and time parameters.

RFIDDataEventArgs(RFIDTag)

Creates an instance of the RFIDDataEventArgs class by using the tag parameter.

public RFIDDataEventArgs (Microsoft.PointOfService.BaseServiceObjects.RFIDTag tag);
new Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs : Microsoft.PointOfService.BaseServiceObjects.RFIDTag -> Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs
Public Sub New (tag As RFIDTag)

Parameters

tag
RFIDTag

The tag that contains the ID and userData.

Applies to

RFIDDataEventArgs(ICollection<RFIDTag>)

Creates an instance of the RFIDDataEventArgs class by using the currentTags parameter.

public RFIDDataEventArgs (System.Collections.Generic.ICollection<Microsoft.PointOfService.BaseServiceObjects.RFIDTag> currentTags);
new Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs : System.Collections.Generic.ICollection<Microsoft.PointOfService.BaseServiceObjects.RFIDTag> -> Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs
Public Sub New (currentTags As ICollection(Of RFIDTag))

Parameters

currentTags
ICollection<RFIDTag>

A list of currentTags.

Applies to

RFIDDataEventArgs(Byte[], Byte[], DateTime)

Creates an instance of the RFIDDataEventArgs class by using the id, data, and time parameters.

public RFIDDataEventArgs (byte[] id, byte[] data, DateTime time);
new Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs : byte[] * byte[] * DateTime -> Microsoft.PointOfService.BaseServiceObjects.RFIDDataEventArgs
Public Sub New (id As Byte(), data As Byte(), time As DateTime)

Parameters

id
Byte[]

The tag ID.

data
Byte[]

The user data contained in the tag.

time
DateTime

The time when the tag was read.

Applies to