Skip to content

Bubble Type: Video Bubble

Sebastian Walker edited this page Oct 29, 2015 · 1 revision
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.VideoPathNative

Contains 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.VideoType

Contains 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.ThumbnailBytes

Contains the video thumbnail's bytes.

Example:

thumbnail = bubble.ThumbnailBytes;

###File Name

string bubble.FileName

The video's filename.

Example:

filename = bubble.FileName;
//filename is now equal to http://example.com/test.mp4

Clone this wiki locally