Esempio n. 1
0
 public static string ContactOfficePhone(string handle)
 {
     return(Skype.Get("USER {0} PHONE_OFFICE", handle));
 }
Esempio n. 2
0
 public static string ContactMobilePhone(string handle)
 {
     return(Skype.Get("USER {0} PHONE_MOBILE", handle));
 }
Esempio n. 3
0
 public static string ContactHomePhone(string handle)
 {
     return(Skype.Get("USER {0} PHONE_HOME", handle));
 }
Esempio n. 4
0
 public static string ContactMood(string handle)
 {
     return(Skype.Get("USER {0} MOOD_TEXT", handle));
 }
Esempio n. 5
0
 public static string ContactDisplayName(string handle)
 {
     return(Skype.Get("USER {0} DISPLAYNAME", handle));
 }
Esempio n. 6
0
 public static string ContactFullName(string handle)
 {
     return(Skype.Get("USER {0} FULLNAME", handle));
 }
Esempio n. 7
0
 public static StatusItem ContactStatus(string handle)
 {
     return(Statuses.Values.FirstOrDefault(s => s.Code == Skype.Get("USER {0} ONLINESTATUS", handle)) ??
            Statuses [OnlineStatus.Unknown]);
 }