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