BasicDesignerLoader.ReportFlushErrors(ICollection) Method

Definition

Reports errors that occurred while flushing changes.

protected:
 virtual void ReportFlushErrors(System::Collections::ICollection ^ errors);
protected virtual void ReportFlushErrors (System.Collections.ICollection errors);
abstract member ReportFlushErrors : System.Collections.ICollection -> unit
override this.ReportFlushErrors : System.Collections.ICollection -> unit
Protected Overridable Sub ReportFlushErrors (errors As ICollection)

Parameters

errors
ICollection

An ICollection containing error objects, usually exceptions.

Exceptions

One or more errors occurred while flushing changes.

Remarks

The ReportFlushErrors method is called during Flush if one or more errors occurred while flushing changes. The values in the errors collection can be exceptions or objects with ToString values that describe the error. The default implementation of ReportFlushErrors raises the last exception in the collection.

Applies to