/// <summary> /// Try to find a comparison tag in the collection with the same tag as the given one. /// </summary> /// <param name="tag">Tag to try to find in the collection.</param> /// <returns>BaseTagValue - null if no match found</returns> public BaseTagValue Find(DvtkData.Dimse.Tag tag) { BaseTagValue baseTagValue = null; foreach (BaseTagValue lBaseTagValue in this) { if (lBaseTagValue.Tag == tag) { baseTagValue = lBaseTagValue; break; } } return(baseTagValue); }
/// <summary> /// Determines whether the <see cref="TagValueCollection"/> contains a specific element. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to locate in the <see cref="TagValueCollection"/>.</param> /// <returns> /// <c>true</c> if the <see cref="TagValueCollection"/> contains the specified value; /// otherwise, <c>false</c>. /// </returns> public bool Contains(BaseTagValue value) { // If value is not of type Code, this will return false. return(List.Contains(value)); }
/// <summary> /// Removes the first occurrence of a specific <see cref="BaseTagValue"/> from the <see cref="TagValueCollection"/>. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to remove from the <see cref="TagValueCollection"/>.</param> public void Remove(BaseTagValue value) { List.Remove(value); }
/// <summary> /// Inserts an <see cref="BaseTagValue"/> element into the <see cref="BaseTagValue"/> at the specified index. /// </summary> /// <param name="index">The zero-based index at which value should be inserted.</param> /// <param name="value">The <see cref="TagValueCollection"/> to insert.</param> public void Insert(int index, BaseTagValue value) { List.Insert(index, value); }
/// <summary> /// Searches for the specified <see cref="BaseTagValue"/> and /// returns the zero-based index of the first occurrence within the entire <see cref="TagValueCollection"/>. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to locate in the <see cref="TagValueCollection"/>.</param> /// <returns> /// The zero-based index of the first occurrence of value within the entire <see cref="TagValueCollection"/>, /// if found; otherwise, -1. /// </returns> public int IndexOf(BaseTagValue value) { return(List.IndexOf(value)); }
/// <summary> /// Adds an object to the end of the <see cref="TagValueCollection"/>. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to be added to the end of the <see cref="TagValueCollection"/>.</param> /// <returns>The <see cref="TagValueCollection"/> index at which the value has been added.</returns> public int Add(BaseTagValue value) { return(List.Add(value)); }
/// <summary> /// Copies the elements of the <see cref="ICollection"/> to a strong-typed <c>BaseTagValue[]</c>, /// starting at a particular <c>BaseTagValue[]</c> index. /// </summary> /// <param name="array"> /// The one-dimensional <c>BaseTagValue[]</c> that is the destination of the elements /// copied from <see cref="ICollection"/>. /// The <c>BaseTagValue[]</c> must have zero-based indexing. /// </param> /// <param name="index"> /// The zero-based index in array at which copying begins. /// </param> /// <remarks> /// Provides the strongly typed member for <see cref="ICollection"/>. /// </remarks> public void CopyTo(BaseTagValue[] array, int index) { ((ICollection)this).CopyTo(array, index); }
/// <summary> /// Determines whether the <see cref="TagValueCollection"/> contains a specific element. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to locate in the <see cref="TagValueCollection"/>.</param> /// <returns> /// <c>true</c> if the <see cref="TagValueCollection"/> contains the specified value; /// otherwise, <c>false</c>. /// </returns> public bool Contains(BaseTagValue value) { // If value is not of type Code, this will return false. return (List.Contains(value)); }
/// <summary> /// Adds an object to the end of the <see cref="TagValueCollection"/>. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to be added to the end of the <see cref="TagValueCollection"/>.</param> /// <returns>The <see cref="TagValueCollection"/> index at which the value has been added.</returns> public int Add(BaseTagValue value) { return (List.Add(value)); }
/// <summary> /// Searches for the specified <see cref="BaseTagValue"/> and /// returns the zero-based index of the first occurrence within the entire <see cref="TagValueCollection"/>. /// </summary> /// <param name="value">The <see cref="BaseTagValue"/> to locate in the <see cref="TagValueCollection"/>.</param> /// <returns> /// The zero-based index of the first occurrence of value within the entire <see cref="TagValueCollection"/>, /// if found; otherwise, -1. /// </returns> public int IndexOf(BaseTagValue value) { return (List.IndexOf(value)); }