public void CopyTo(ByteKeyFrame[] array, int index) { }
public int Add(ByteKeyFrame keyFrame) { return default(int); }
public bool Contains(ByteKeyFrame keyFrame) { return default(bool); }
public void Insert(int index, ByteKeyFrame keyFrame) { }
public void Remove(ByteKeyFrame keyFrame) { }
/// <summary> /// Returns true of the collection contains the given ByteKeyFrame. /// </summary> public bool Contains(ByteKeyFrame keyFrame) { ReadPreamble(); return _keyFrames.Contains(keyFrame); }
/// <summary> /// Inserts a ByteKeyFrame into a specific location in the collection. /// </summary> public void Insert(int index, ByteKeyFrame keyFrame) { if (keyFrame == null) { throw new ArgumentNullException("keyFrame"); } WritePreamble(); OnFreezablePropertyChanged(null, keyFrame); _keyFrames.Insert(index, keyFrame); WritePostscript(); }
public int Add (ByteKeyFrame keyFrame) { throw new NotImplementedException (); }
public bool Contains (ByteKeyFrame keyFrame) { throw new NotImplementedException (); }
public void Insert (int index, ByteKeyFrame keyFrame) { throw new NotImplementedException (); }
public void Remove (ByteKeyFrame keyFrame) { throw new NotImplementedException (); }
public bool Contains(ByteKeyFrame keyFrame) { return(default(bool)); }
public int Add(ByteKeyFrame keyFrame) { return(default(int)); }
/// <summary> /// Copies all of the ByteKeyFrames in the collection to an /// array of ByteKeyFrames. /// </summary> public void CopyTo(ByteKeyFrame[] array, int index) { ReadPreamble(); _keyFrames.CopyTo(array, index); }
public void CopyTo (ByteKeyFrame[] array, int index) { throw new NotImplementedException (); }
/// <summary> /// Adds a ByteKeyFrame to the collection. /// </summary> public int Add(ByteKeyFrame keyFrame) { if (keyFrame == null) { throw new ArgumentNullException("keyFrame"); } WritePreamble(); OnFreezablePropertyChanged(null, keyFrame); _keyFrames.Add(keyFrame); WritePostscript(); return _keyFrames.Count - 1; }
public int IndexOf(ByteKeyFrame keyFrame) { return default(int); }
/// <summary> /// Returns the index of a given ByteKeyFrame in the collection. /// </summary> public int IndexOf(ByteKeyFrame keyFrame) { ReadPreamble(); return _keyFrames.IndexOf(keyFrame); }
/// <summary> /// Removes a ByteKeyFrame from the collection. /// </summary> public void Remove(ByteKeyFrame keyFrame) { WritePreamble(); if (_keyFrames.Contains(keyFrame)) { OnFreezablePropertyChanged(keyFrame, null); _keyFrames.Remove(keyFrame); WritePostscript(); } }
public int IndexOf(ByteKeyFrame keyFrame) { return(default(int)); }