IEpcFactory Interface

TegoOS

IEpcFactory Interface
Interface for EPC factories which can instantiate EpcEncoder objects based on header byte or scheme.

Namespace: Tego.Rfid.Tds
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public interface IEpcFactory
Public Interface IEpcFactory
public interface class IEpcFactory
type IEpcFactory =  interface end

The IEpcFactory type exposes the following members.

Methods
  NameDescription
Public methodCreateEncoderFor(Byte)
Create an EpcEncoder corresponding to a given header byte.
Public methodCreateEncoderFor(String)
Create an EpcEncoder corresponding to a given scheme.
Public methodGetDefaultEncoder
Gets the default encoder type if a header or scheme is not known.
Public methodGetKnownEncoderData
Gets data about known encoders, including (display) name, scheme and header.
Public methodInstallEncoder(Type)
Adds an encoder, reading its HEADER and SCHEME fields so that the encoder can be created from these values.
Public methodInstallEncoder(String, Byte, String)
Adds an encoder by its assembly qualified name using provided header and scheme information. This allows loading of encoders in external assemblies to be defered until they are needed (in the compact framework, assemblies cannot be unloaded).
Public methodLookUpEncoderTypeFromHeader
Looks up the encoder type for a given header byte.
Public methodSetDefaultEncoder(String)
Sets the default encoder to create for unknown keys.
Public methodSetDefaultEncoder(Type)
Sets the default encoder to create for unknown keys.
Top
See Also