OnEndLoad Method
See Also 
SourceCode.Framework.Design Namespace > DesignerLoader Class : OnEndLoad Method



successful
true if the load completed successfully; otherwise, false.
errors
An System.Collections.ICollection containing objects (usually exceptions) that were reported as errors.

Glossary Item Box

Notifies the designer loader that loading is complete.

Syntax

Visual Basic (Declaration) 
Protected Overrides Sub OnEndLoad( _
   ByVal successful As Boolean, _
   ByVal errors As ICollection _
) 
Visual Basic (Usage)Copy Code
Dim instance As DesignerLoader
Dim successful As Boolean
Dim errors As ICollection
 
instance.OnEndLoad(successful, errors)
C# 
protected override void OnEndLoad( 
   bool successful,
   ICollection errors
)
C++/CLI 
protected:
void OnEndLoad( 
   bool successful,
   ICollection^ errors
) override 

Parameters

successful
true if the load completed successfully; otherwise, false.
errors
An System.Collections.ICollection containing objects (usually exceptions) that were reported as errors.

Exceptions

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also