private void TestValidation() { VKSDK.API("account.testValidation", new Dictionary <string, string>(), (result) => { Status = "API.account.testValidation call completed: " + result.ToString(); }); }
private void CallApi() { VKSDK.API("users.get", new Dictionary <string, string>(), (result) => { Status = "API.users.get call completed: " + result.ToString(); }); }
private void CallGetFriends() { VKSDK.API("friends.get", new Dictionary <string, string>() { { "order", "hints" } }, (result) => { Status = "API.friends.get call completed: " + result.ToString(); }); }