Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1.         /// <summary>
  2.         /// Check whether a pastebin handle exists
  3.         /// Created by gigajew@hf
  4.         /// </summary>
  5.         static bool CheckPastebin(string pastebin_handle)
  6.         {
  7.             return SSLGetStatusCode(
  8.                 "pastebin.com",
  9.                 string.Format("HEAD /u/{0} HTTP/1.0\r\nHost: pastebin.com\r\n\r\n", pastebin_handle)
  10.                 ) == "200";
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement