Class CaptureCollection<T>
Inheritance
System.Object
CaptureCollection<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Recolude.Core.dll
Syntax
public abstract class CaptureCollection<T> : ICaptureCollection<T> where T : ICapture
Type Parameters
Constructors
CaptureCollection(String, T[])
Declaration
public CaptureCollection(string name, T[] captures)
Parameters
Type |
Name |
Description |
System.String |
name |
|
T[] |
captures |
|
Fields
captures
Declaration
Field Value
Properties
Captures
Declaration
public T[] Captures { get; }
Property Value
Duration
Declaration
public float Duration { get; }
Property Value
Type |
Description |
System.Single |
|
EndTime
Shorthand for getting the time of the last capture in the
collection.
Declaration
public float EndTime { get; }
Property Value
Type |
Description |
System.Single |
|
Item[Int32]
Declaration
public T this[int i] { get; }
Parameters
Type |
Name |
Description |
System.Int32 |
i |
|
Property Value
Length
Declaration
public int Length { get; }
Property Value
Type |
Description |
System.Int32 |
|
Name
Declaration
public string Name { get; }
Property Value
Type |
Description |
System.String |
|
Signature
Declaration
public abstract string Signature { get; }
Property Value
Type |
Description |
System.String |
|
StartTime
Shorthand for getting the time of the first capture in the
collection.
Declaration
public float StartTime { get; }
Property Value
Type |
Description |
System.Single |
|
Implements