Gif Message
The GifMessage
is intended to be used for displaying gif elements. It exposes the following properties:
-
Author
—The author of the message. -
Source
—Property of the type ofUri
, which is used to display entries in the list message. -
CreationDate
—This property holds a DateTime object of the message's creation date.
Defining a GifMessage
GifMessage gifMessage = new GifMessage(this.currentAuthor, new Uri("ms-appx:///MyGif.gif", UriKind.Absolute));
this.chat.AddMessage(gifMessage);