public void AddImage(NSImage image, QTTime forDuration, QTImageAttributes attributes) { if (attributes == null) { throw new ArgumentNullException("attributes"); } AddImage(image, forDuration, attributes.ToDictionary()); }
public QTTimeRange(QTTime time, QTTime duration) { #if XAMCORE_2_0 this.time = time; this.duration = duration; #else Time = time; Duration = duration; #endif }