Example #1
0
 /// <summary>
 /// Retrieve a row from the server. The text retrieved is kept around in a buffer linked with the
 /// query handle from which selective fields can be extracted. It returns the number of fields
 /// recognized. A zero is returned upon encountering end of sequence or error. This can be
 /// analyzed in using mapi_error().
 /// </summary>
 /// <param name="hdl"></param>
 /// <returns></returns>
 public static int MapiFetchRow(MapiHdl hdl)
 {
     return(CMapiLib.mapi_fetch_row(hdl.Ptr));
 }