don't know if this new parameter shit is user-friendly :-/

This commit is contained in:
2013-06-15 14:36:06 +02:00
parent cbbce90a43
commit 3d7b00f25c
5 changed files with 101 additions and 5 deletions
+5 -1
View File
@@ -1,6 +1,7 @@
using System;
using PocketSharp;
using PocketSharp.Models.Authentification;
using PocketSharp.Models.Parameters;
namespace PocketSharp.Console
{
@@ -16,7 +17,10 @@ namespace PocketSharp.Console
PocketClient client = new PocketClient("15396-f6f92101d72c8e270a6c9bb3");
client.AccessCode = "a85134a7-243c-6656-ab82-97c901";
client.Retrieve();
client.Retrieve(new RetrieveParameters()
{
Favorite = true
});
System.Console.ReadKey();
}