Esempio n. 1
0
 /// <summary>
 /// Sets the thumbnail of the embed.
 /// </summary>
 /// <param name="url">URL to the image</param>
 /// <returns>This</returns>
 public Embed SetThumbnail(Uri url)
 {
     Thumbnail = new EmbedImage {
         Url = url
     };
     return(this);
 }
Esempio n. 2
0
 /// <summary>
 /// Sets the image of the embed.
 /// </summary>
 /// <param name="url">URL to the image</param>
 /// <returns>This</returns>
 public Embed SetImage(Uri url)
 {
     Image = new EmbedImage {
         Url = url
     };
     return(this);
 }