Click or drag to resize

IErrors Interface

Interface for Error collection

Namespace:  EBP.Api.Interfaces.Misc
Assembly:  EBP.Api.Common (in EBP.Api.Common.dll) Version: 1.0.2835.45 (1.0.2835.45)
Syntax
public interface IErrors : IList<IError>, 
	ICollection<IError>, IEnumerable<IError>, IEnumerable, 
	IDisposable, IEquatable<IProxy>

The IErrors type exposes the following members.

Properties
  NameDescription
Public propertyCount (Inherited from ICollectionIError.)
Public propertyHasSeriousErrors
Gets whether the error collection has serious errors
Public propertyIsReadOnly (Inherited from ICollectionIError.)
Public propertyItem
Gets or sets the element at the specified index.
(Inherited from IListIError.)
Top
Methods
  NameDescription
Public methodAdd(T) (Inherited from ICollectionIError.)
Public methodAdd(ErrorKind, String)
Add a new instance of Error.
Public methodAddRange
Public methodClear (Inherited from ICollectionIError.)
Public methodContains (Inherited from ICollectionIError.)
Public methodCopyTo (Inherited from ICollectionIError.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableIError.)
Public methodIndexOf (Inherited from IListIError.)
Public methodInsert (Inherited from IListIError.)
Public methodRemove (Inherited from ICollectionIError.)
Public methodRemoveAt (Inherited from IListIError.)
Top
Remarks
The IErrors type can be instantiated with EBP.Api.Utils<TExtension>.GetInterface<T>
IErrors instance = Utils<ExtensionType>.GetInterface<IErrors>();
See Also