Microsoft.Data.SqlClient.SqlErrorCollection
Collects all errors generated by the .NET Framework Data Provider for SQL Server. This class cannot be inherited.
namespace Microsoft.Data.SqlClient
{
public sealed class SqlErrorCollection : ICollection, IEnumerable
{
public int Count { get; }
public SqlError this[int index] { get; }
public void CopyTo(SqlError[] array, int index);
public void CopyTo(Array array, int index);
public IEnumerator GetEnumerator();
}
}