Dropbox .NET SDK
Show / Hide Table of Contents

Class GetKeyframesResult

The get keyframes result object

Inheritance
object
GetKeyframesResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class GetKeyframesResult

Constructors

View Source

GetKeyframesResult(IEnumerable<ApiKeyframe>)

Initializes a new instance of the GetKeyframesResult class.

Declaration
public GetKeyframesResult(IEnumerable<ApiKeyframe> frames = null)
Parameters
Type Name Description
IEnumerable<ApiKeyframe> frames

The extracted keyframes, ordered by timestamp. May be empty when no scene changes are detected in the source.

Properties

View Source

Frames

The extracted keyframes, ordered by `timestamp`. May be empty when no scene changes are detected in the source.

Declaration
public IList<ApiKeyframe> Frames { get; protected set; }
Property Value
Type Description
IList<ApiKeyframe>
  • View Source
In this article
Back to top Dropbox .NET SDK