188 lines
No EOL
6 KiB
C#
188 lines
No EOL
6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <autogenerated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version: 1.1.4322.573
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </autogenerated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections;
|
|
|
|
namespace Server.Engines.Reports
|
|
{
|
|
/// <summary>
|
|
/// Strongly typed collection of Server.Engines.Reports.ResponseInfo.
|
|
/// </summary>
|
|
public class ResponseInfoCollection : CollectionBase
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the value of the Server.Engines.Reports.ResponseInfo at a specific position in the ResponseInfoCollection.
|
|
/// </summary>
|
|
public ResponseInfo this[int index]
|
|
{
|
|
get => (ResponseInfo)List[index];
|
|
set => List[index] = value;
|
|
}
|
|
|
|
public int Add(string sentBy, string message)
|
|
{
|
|
return Add(new ResponseInfo(sentBy, message));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Append a Server.Engines.Reports.ResponseInfo entry to this collection.
|
|
/// </summary>
|
|
/// <param name="value">Server.Engines.Reports.ResponseInfo instance.</param>
|
|
/// <returns>The position into which the new element was inserted.</returns>
|
|
public int Add(ResponseInfo value)
|
|
{
|
|
return List.Add(value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether a specified Server.Engines.Reports.ResponseInfo instance is in this collection.
|
|
/// </summary>
|
|
/// <param name="value">Server.Engines.Reports.ResponseInfo instance to search for.</param>
|
|
/// <returns>True if the Server.Engines.Reports.ResponseInfo instance is in the collection; otherwise false.</returns>
|
|
public bool Contains(ResponseInfo value)
|
|
{
|
|
return List.Contains(value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieve the index a specified Server.Engines.Reports.ResponseInfo instance is in this collection.
|
|
/// </summary>
|
|
/// <param name="value">Server.Engines.Reports.ResponseInfo instance to find.</param>
|
|
/// <returns>
|
|
/// The zero-based index of the specified Server.Engines.Reports.ResponseInfo instance. If the object is not found, the
|
|
/// return value is -1.
|
|
/// </returns>
|
|
public int IndexOf(ResponseInfo value)
|
|
{
|
|
return List.IndexOf(value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes a specified Server.Engines.Reports.ResponseInfo instance from this collection.
|
|
/// </summary>
|
|
/// <param name="value">The Server.Engines.Reports.ResponseInfo instance to remove.</param>
|
|
public void Remove(ResponseInfo value)
|
|
{
|
|
List.Remove(value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns an enumerator that can iterate through the Server.Engines.Reports.ResponseInfo instance.
|
|
/// </summary>
|
|
/// <returns>An Server.Engines.Reports.ResponseInfo's enumerator.</returns>
|
|
public new ResponseInfoCollectionEnumerator GetEnumerator()
|
|
{
|
|
return new ResponseInfoCollectionEnumerator(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Insert a Server.Engines.Reports.ResponseInfo instance into this collection at a specified index.
|
|
/// </summary>
|
|
/// <param name="index">Zero-based index.</param>
|
|
/// <param name="value">The Server.Engines.Reports.ResponseInfo instance to insert.</param>
|
|
public void Insert(int index, ResponseInfo value)
|
|
{
|
|
List.Insert(index, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Strongly typed enumerator of Server.Engines.Reports.ResponseInfo.
|
|
/// </summary>
|
|
public class ResponseInfoCollectionEnumerator : IEnumerator
|
|
{
|
|
/// <summary>
|
|
/// Collection to enumerate.
|
|
/// </summary>
|
|
private ResponseInfoCollection _collection;
|
|
|
|
/// <summary>
|
|
/// Current element pointed to.
|
|
/// </summary>
|
|
private ResponseInfo _currentElement;
|
|
|
|
/// <summary>
|
|
/// Current index
|
|
/// </summary>
|
|
private int _index;
|
|
|
|
/// <summary>
|
|
/// Default constructor for enumerator.
|
|
/// </summary>
|
|
/// <param name="collection">Instance of the collection to enumerate.</param>
|
|
internal ResponseInfoCollectionEnumerator(ResponseInfoCollection collection)
|
|
{
|
|
_index = -1;
|
|
_collection = collection;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the Server.Engines.Reports.ResponseInfo object in the enumerated ResponseInfoCollection currently indexed by this
|
|
/// instance.
|
|
/// </summary>
|
|
public ResponseInfo Current
|
|
{
|
|
get
|
|
{
|
|
if (_index == -1
|
|
|| _index >= _collection.Count)
|
|
throw new IndexOutOfRangeException("Enumerator not started.");
|
|
|
|
return _currentElement;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the current element in the collection.
|
|
/// </summary>
|
|
object IEnumerator.Current
|
|
{
|
|
get
|
|
{
|
|
if (_index == -1
|
|
|| _index >= _collection.Count)
|
|
throw new IndexOutOfRangeException("Enumerator not started.");
|
|
|
|
return _currentElement;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reset the cursor, so it points to the beginning of the enumerator.
|
|
/// </summary>
|
|
public void Reset()
|
|
{
|
|
_index = -1;
|
|
_currentElement = null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Advances the enumerator to the next queue of the enumeration, if one is currently available.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// true, if the enumerator was successfully advanced to the next queue; false, if the enumerator has reached the end
|
|
/// of the enumeration.
|
|
/// </returns>
|
|
public bool MoveNext()
|
|
{
|
|
if (_index
|
|
< _collection.Count - 1)
|
|
{
|
|
_index = _index + 1;
|
|
_currentElement = _collection[_index];
|
|
return true;
|
|
}
|
|
|
|
_index = _collection.Count;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |