示例#1
0
 /**
  * Constructor used by the implementation
  *
  * @param SocialNetwork of the profile
  * @param ProfileUrl    of the user
  * @since V2.0
  */
 public ContactSocial(ContactSocialNetwork socialNetwork, string profileUrl) : base()
 {
     this.SocialNetwork = SocialNetwork;
     this.ProfileUrl    = ProfileUrl;
 }
示例#2
0
 /**
  * Set the social network
  *
  * @param SocialNetwork of the profile
  * @since V2.0
  */
 public void SetSocialNetwork(ContactSocialNetwork SocialNetwork)
 {
     this.SocialNetwork = SocialNetwork;
 }