示例#1
0
 /// <summary>
 /// Parses the specified <paramref name="obj"/> into an instance of <see cref="InstagramCarousel"/>.
 /// </summary>
 /// <param name="obj">The instance of <see cref="JObject"/> to be parsed.</param>
 /// <returns>An instance of <see cref="InstagramCarousel"/>.</returns>
 public new static InstagramCarousel Parse(JObject obj)
 {
     return(InstagramMedia.Parse(obj) as InstagramCarousel);
 }
 /// <summary>
 /// Parses the specified <paramref name="obj"/> into an instance of <see cref="InstagramVideo"/>.
 /// </summary>
 /// <param name="obj">The instance of <see cref="JObject"/> to be parsed.</param>
 /// <returns>An instance of <see cref="InstagramVideo"/>.</returns>
 public new static InstagramVideo Parse(JObject obj)
 {
     return(InstagramMedia.Parse(obj) as InstagramVideo);
 }
示例#3
0
 /// <summary>
 /// Parses the specified <paramref name="obj"/> into an instance of <see cref="InstagramImage"/>.
 /// </summary>
 /// <param name="obj">The instance of <see cref="JObject"/> to be parsed.</param>
 /// <returns>An instance of <see cref="InstagramImage"/>.</returns>
 public new static InstagramImage Parse(JObject obj)
 {
     return(InstagramMedia.Parse(obj) as InstagramImage);
 }