Пример #1
0
 /// <summary>
 /// Bind a string variable with a field in the return table.
 /// Upon a successful subsequent mapi_fetch_row() the indicated field
 /// is stored in the space pointed to by val. Returns an error if
 /// the field identified does not exist.
 /// </summary>
 /// <param name="hdl"></param>
 /// <param name="fldnr"></param>
 /// <param name="val"></param>
 /// <returns></returns>
 public static MapiMsg MapiBind(MapiHdl hdl, int fldnr, string[] val)
 {
     return(new MapiMsg(CMapiLib.mapi_bind(hdl.Ptr, fldnr, val)));
 }