Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Dc Mass - DcUser.cs

DcUser.cs

Caricato da:
Scarica il programma completo

  1. using System;
  2. using System.Threading;
  3. using System.Net.Sockets;
  4. using System.Windows.Forms;
  5.  
  6. namespace SaTaNaDcMaSS
  7. {
  8.         /// <summary>
  9.         /// Summary description for DcUser.
  10.         /// </summary>
  11.         public class DcUser
  12.         {
  13.                 static string nick="CiPPaRDoNe";
  14.                 static string tag="<§å†åÑå Т M姧 V:1.0,M:A,H:0/0/1,S:6>";
  15.                 static string descr="FREE_KEVIN";
  16.                 static string share="120";
  17.                 static string conn="Turbo-Diesel";
  18.                 static string email="Cicciolina@LaPadrona.it";
  19.                 static string floodpvt="";
  20.                 static string userpvt="";
  21.                 static RichTextBox r;
  22.                 static Socket sock;
  23.                 static Thread thread;
  24.                 public DcUser()
  25.                 {
  26.                        
  27.                 }
  28.                 public static void SetNick(string n)
  29.                 {
  30.                         nick=n;
  31.                 }
  32.                 public static string GetNick()
  33.                 {
  34.                         string a = nick;
  35.                         return a;
  36.                 }
  37.                 public static void SetTag(string t)
  38.                 {
  39.                         tag=t;
  40.                 }
  41.                 public static string GetTag()
  42.                 {
  43.                         string a = tag;
  44.                         return a;
  45.                 }
  46.                 public static void SetDescr(string d)
  47.                 {
  48.                         descr=d;
  49.                 }
  50.                 public static string GetDescr()
  51.                 {
  52.                         string a = descr;
  53.                         return a;
  54.                 }
  55.                 public static void SetShare(string s)
  56.                 {
  57.                         share=s;
  58.                 }
  59.                 public static string GetShare()
  60.                 {
  61.                         string a = share;
  62.                         return a;
  63.                 }
  64.                 public static void SetConn(string c)
  65.                 {
  66.                         conn=c;
  67.                 }
  68.                 public static string GetConn()
  69.                 {
  70.                         string a = conn;
  71.                         return a;
  72.                 }
  73.                 public static void SetEmail(string e)
  74.                 {
  75.                         email=e;
  76.                 }
  77.                 public static string GetEmail()
  78.                 {
  79.                         string a = email;
  80.                         return a;
  81.                 }
  82.                 public static void SetPvtFlood(string f)
  83.                 {
  84.                         floodpvt=f;
  85.                 }
  86.                 public static string GetPvtFlood()
  87.                 {
  88.                         string a = floodpvt;
  89.                         return a;
  90.                 }
  91.                 public static void SetThread(Thread t)
  92.                 {
  93.                         thread=t;
  94.                 }
  95.                 public static Thread GetThread()
  96.                 {
  97.                         Thread a = thread;
  98.                         return a;
  99.                 }
  100.                 public static void SetSocket(Socket s)
  101.                 {
  102.                         sock=s;
  103.                 }
  104.                 public static Socket GetSocket()
  105.                 {
  106.                         Socket a = sock;
  107.                         return a;
  108.                 }
  109.                 public static void SetRichTextBox(RichTextBox rich)
  110.                 {
  111.                         r=rich;
  112.                 }
  113.                 public static RichTextBox GetRichTextBox()
  114.                 {
  115.                         RichTextBox a = r;
  116.                         return a;
  117.                 }
  118.                 public static void SetPvtUser(string s)
  119.                 {
  120.                         userpvt=s;
  121.                 }
  122.                 public static string GetPvtUser()
  123.                 {
  124.                         string a = userpvt;
  125.                         return a;
  126.                 }
  127.         }
  128. }