PartionedEpcFieldAttribute Constructor (Int32, Int32, Int32, Int32, Type)

TegoOS

PartionedEpcFieldAttribute Constructor (Int32, Int32, Int32, Int32, Type)
Constructor for the first partitioned field (organization).

Namespace: Tego.Rfid.Tds
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public PartionedEpcFieldAttribute(
	int address,
	int combinedBits,
	int combinedChars,
	int partitionBits = 3,
	Type fieldEncoderType = null
)
Public Sub New ( 
	address As Integer,
	combinedBits As Integer,
	combinedChars As Integer,
	Optional partitionBits As Integer = 3,
	Optional fieldEncoderType As Type = Nothing
)
public:
PartionedEpcFieldAttribute(
	int address, 
	int combinedBits, 
	int combinedChars, 
	int partitionBits = 3, 
	Type^ fieldEncoderType = nullptr
)
new : 
        address : int * 
        combinedBits : int * 
        combinedChars : int * 
        ?partitionBits : int * 
        ?fieldEncoderType : Type 
(* Defaults:
        let _partitionBits = defaultArg partitionBits 3
        let _fieldEncoderType = defaultArg fieldEncoderType null
*)
-> PartionedEpcFieldAttribute

Parameters

address
Type: SystemInt32
Start address of the partition value.
combinedBits
Type: SystemInt32
Combined bit count of two partition fields plus the bit count used for the partition value.
combinedChars
Type: SystemInt32
Combined character (or digit as appropriate) count for the two partitioned fields.
partitionBits (Optional)
Type: SystemInt32
Number of bits used to store the partition value. Default 3.
fieldEncoderType (Optional)
Type: SystemType
Type of field encoder to use. Default NumericEncoding.
Remarks
The first partition is always padded.
See Also