public override void Decode(IDecoder decoder)
        {
            base.Decode(decoder);

            decoder.PushNamespace(AutoID.Namespaces.AutoID);
            Sighting = (RfidSightingCollection)decoder.ReadEncodeableArray("Sighting", typeof(RfidSighting));

            decoder.PopNamespace();
        }
 private void Initialize()
 {
     m_Sighting = new RfidSightingCollection();
 }