-
Notifications
You must be signed in to change notification settings - Fork 30
Bubble Type: Video Bubble
VideoBubble.cs
##Description The video bubble is used for displaying video messages.
##Special Properties
The following properties are special to this bubble type. In addition, there are bubble properties which apply to all bubble types. Those are listed here.
###VideoPathNative
string bubble.VideoPathNativeContains the video's path.
Example:
path = bubble.VideoPathNative;VideoBubble.cs
##Description The image bubble is used for displaying image messages.
##Special Properties
The following properties are special to this bubble type. In addition, there are bubble properties which apply to all bubble types. Those are listed here.
###Resource Type
Type bubble.VideoTypeContains the resource type of the Bubble's video.
Can be either Url for a URL requested video file, or File for an attached video file
Example:
type = bubble.VideoType;
//type is now equal to Url###Thumbnail Bytes
byte[] bubble.ThumbnailBytesContains the video thumbnail's bytes.
Example:
thumbnail = bubble.ThumbnailBytes;###File Name
string bubble.FileNameThe video's filename.
Example:
filename = bubble.FileName;
//filename is now equal to http://example.com/test.mp4© The Disa Open Source Project
If you have any questions please contact opensource@disa.im!
