Advertisement
BruhhMods

C#-How To Make A Skype Resolver (API NEEDED)

Jan 26th, 2015
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Net;
  11.  
  12. namespace SKYPE_RESOLVER__API_NEEDED_TO_WORK_
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20.  
  21. private void button1_Click(object sender, EventArgs e)
  22. {
  23. if (textBox1.Text == "")
  24. {
  25. MessageBox.Show("Enter A Skype Name");
  26. }
  27. else if (textBox1.Text == "Your Skype Name")
  28. {
  29. MessageBox.Show("Username Blacklisted");
  30. }
  31. else
  32. {
  33. WebRequest.Create("http://your_api_link.com" + textBox1.Text);
  34. textBox2.Text = new System.Net.WebClient().DownloadString("http://your_api_link.com" + textBox1.Text);
  35. }
  36. }
  37.  
  38. private void button2_Click(object sender, EventArgs e)
  39. {
  40. Clipboard.SetText(textBox2.Text);
  41. }
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement