BasicDesignerLoader.ReportFlushErrors(ICollection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.