Esempio n. 1
0
 /// <summary>
 /// Converts the output values into the native type used by the CustomQuery.
 /// </summary>
 /// <param name="rg">Specifies the raw output data.</param>
 /// <param name="type">Returns the output type.</param>
 /// <returns>The converted output data is returned as a byte stream.</returns>
 public byte[] ConvertOutput(float[] rg, out string type)
 {
     return(m_iquery.ConvertOutput(rg, out type));
 }
Esempio n. 2
0
        /// <summary>
        /// Converts the output values into the native type used by the CustomQuery.
        /// </summary>
        /// <param name="rg">Specifies the raw output data.</param>
        /// <param name="type">Returns the output type.</param>
        /// <returns>The converted output data is returned as a byte stream.</returns>
        public byte[] ConvertOutput(float[] rg, out string type)
        {
            IXCustomQuery iqry = m_colCustomQuery.Find("OutputConverter");

            return(iqry.ConvertOutput(rg, out type));
        }