internal object this[ProtocolLog.Field field]
 {
     get
     {
         if (this.row != null)
         {
             return(this.row[(int)field]);
         }
         return(null);
     }
     set
     {
         if (this.row != null)
         {
             this.row[(int)field] = value;
         }
     }
 }
 public FieldInfo(ProtocolLog.Field field, string columnName)
 {
     this.Field      = field;
     this.ColumnName = columnName;
 }