LoadedEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / Host / LoadedEvent.cs / 1 / LoadedEvent.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.ComponentModel.Design {
 
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Design; 

    ///  
    ///  
    ///     Represents the method that will handle a Loaded event.
    ///  
    public delegate void LoadedEventHandler(object sender, LoadedEventArgs e);

    /// 
    ///  
    ///     Provides additional information for the Loaded event.
    ///  
    public sealed class LoadedEventArgs : EventArgs { 

        private bool          _succeeded; 
        private ICollection   _errors;

        /// 
        ///  
        ///     Creates a new LoadedEventArgs object.
        ///  
        public LoadedEventArgs(bool succeeded, ICollection errors) { 

            _succeeded = succeeded; 
            _errors = errors;

            if (_errors == null) {
                _errors = new object[0]; 
            }
        } 
 
        /// 
        ///  
        ///     A collection of errors that occurred while
        ///     the designer was loading.
        /// 
        public ICollection Errors { 
            get {
                return _errors; 
            } 
        }
 
        /// 
        /// 
        ///     True to indicate the designer load was successful.
        ///     Even successful loads can have errors, if the errors 
        ///     were not too servere to prevent the designer from
        ///     loading. 
        ///  
        public bool HasSucceeded {
            get { 
                return _succeeded;
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK