AsyncContentLoadedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / UIAutomation / UIAutomationTypes / System / Windows / Automation / AsyncContentLoadedEventArgs.cs / 1 / AsyncContentLoadedEventArgs.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: AsyncContentLoadedEventArgs event args class 
//
// History: 
//  02/04/2004 : Srikanth Koneru created
//  11/08/2004 : Micw change bytesRecieved & bytesExpected to percentComplete
//
//--------------------------------------------------------------------------- 

using System; 
using System.Windows.Automation; 

namespace System.Windows.Automation 
{
    /// 
    /// AsyncContentLoadedEventArgs event args class
    ///  
#if (INTERNAL_COMPILE)
    internal sealed class AsyncContentLoadedEventArgs  : AutomationEventArgs 
#else 
    public sealed class AsyncContentLoadedEventArgs  : AutomationEventArgs
#endif 
    {
        //-----------------------------------------------------
        //
        //  Constructors 
        //
        //----------------------------------------------------- 
 
        #region Constructors
 
        /// 
        /// Constructor for async content loaded event args.
        /// 
        /// Flag indicating the state of the content load. 
        /// Indicates percent complete for the content load.
        public AsyncContentLoadedEventArgs (AsyncContentLoadedState asyncContentState, double percentComplete) 
            : base(AutomationElementIdentifiers.AsyncContentLoadedEvent) 
        {
            _asyncContentState = asyncContentState; 
            _percentComplete = percentComplete;
        }

        #endregion Constructors 

 
        //------------------------------------------------------ 
        //
        //  Public Properties 
        //
        //-----------------------------------------------------

        #region Public Properties 

        ///  
        /// Returns the state of the content load. 
        /// 
        public AsyncContentLoadedState AsyncContentLoadedState 
        {
            get
            {
                return _asyncContentState; 
            }
        } 
 
        /// 
        /// Returns percent complete for the content load. 
        /// 
        public double PercentComplete
        {
            get 
            {
                return _percentComplete; 
            } 
        }
 
        #endregion Public Properties


        //------------------------------------------------------ 
        //
        //  Private Fields 
        // 
        //------------------------------------------------------
 
        #region Private Fields

        private AsyncContentLoadedState _asyncContentState;
        private double _percentComplete; 

        #endregion Private Fields 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: AsyncContentLoadedEventArgs event args class 
//
// History: 
//  02/04/2004 : Srikanth Koneru created
//  11/08/2004 : Micw change bytesRecieved & bytesExpected to percentComplete
//
//--------------------------------------------------------------------------- 

using System; 
using System.Windows.Automation; 

namespace System.Windows.Automation 
{
    /// 
    /// AsyncContentLoadedEventArgs event args class
    ///  
#if (INTERNAL_COMPILE)
    internal sealed class AsyncContentLoadedEventArgs  : AutomationEventArgs 
#else 
    public sealed class AsyncContentLoadedEventArgs  : AutomationEventArgs
#endif 
    {
        //-----------------------------------------------------
        //
        //  Constructors 
        //
        //----------------------------------------------------- 
 
        #region Constructors
 
        /// 
        /// Constructor for async content loaded event args.
        /// 
        /// Flag indicating the state of the content load. 
        /// Indicates percent complete for the content load.
        public AsyncContentLoadedEventArgs (AsyncContentLoadedState asyncContentState, double percentComplete) 
            : base(AutomationElementIdentifiers.AsyncContentLoadedEvent) 
        {
            _asyncContentState = asyncContentState; 
            _percentComplete = percentComplete;
        }

        #endregion Constructors 

 
        //------------------------------------------------------ 
        //
        //  Public Properties 
        //
        //-----------------------------------------------------

        #region Public Properties 

        ///  
        /// Returns the state of the content load. 
        /// 
        public AsyncContentLoadedState AsyncContentLoadedState 
        {
            get
            {
                return _asyncContentState; 
            }
        } 
 
        /// 
        /// Returns percent complete for the content load. 
        /// 
        public double PercentComplete
        {
            get 
            {
                return _percentComplete; 
            } 
        }
 
        #endregion Public Properties


        //------------------------------------------------------ 
        //
        //  Private Fields 
        // 
        //------------------------------------------------------
 
        #region Private Fields

        private AsyncContentLoadedState _asyncContentState;
        private double _percentComplete; 

        #endregion Private Fields 
    } 
}

// 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