Ejemplo n.º 1
0
 // Methods
 public Owner(string pMail, string pPassword)
 {
     this.privacy = MSNPrivacy.Unknown;
       this.notifyPrivacy = MSNNotifyPrivacy.Unknown;
       this.mail = pMail;
       this.password = pPassword;
 }
Ejemplo n.º 2
0
 internal void SetNotifyPrivacy(MSNNotifyPrivacy privacy)
 {
     if (privacy == MSNNotifyPrivacy.AutomaticAdd)
       {
     this.SocketSend("GTC " + this.NewTrans() + " N\r\n");
       }
       if (privacy == MSNNotifyPrivacy.PromptOnAdd)
       {
     this.SocketSend("GTC " + this.NewTrans() + " A\r\n");
       }
 }