コード例 #1
0
ファイル: RemoteDatabase.cs プロジェクト: Dooks123/Rapi2
 /// <summary>
 /// Removes a database from the object store on a remote Microsoft® Windows® CE–based device.
 /// </summary>
 /// <param name="device">The device.</param>
 /// <param name="objId">Object identifier of the database to be deleted.</param>
 /// <returns></returns>
 public static bool Delete(RemoteDevice device, uint objId)
 {
     return(device.ISession.CeDeleteDatabase(objId) == 1);
 }