ViewStateChangedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / View / ViewStateChangedEventArgs.cs / 1305376 / ViewStateChangedEventArgs.cs

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

namespace System.Activities.Presentation.View 
{
    using System.Activities.Presentation.Model; 
    using System.Runtime; 

    [Fx.Tag.XamlVisible(false)] 
    public class ViewStateChangedEventArgs : EventArgs
    {
        ModelItem parentModelItem;
        string key; 
        object newValue;
        object oldValue; 
 
        public ViewStateChangedEventArgs(ModelItem modelItem, string key, object newValue, object oldValue)
        { 
            this.parentModelItem = modelItem;
            this.key = key;
            this.newValue = newValue;
            this.oldValue = oldValue; 
        }
 
        public ModelItem ParentModelItem 
        {
            get 
            {
                return this.parentModelItem;
            }
        } 
        public string Key
        { 
            get 
            {
                return this.key; 
            }
        }

        public object NewValue 
        {
            get 
            { 
                return this.newValue;
            } 
        }

        public object OldValue
        { 
            get
            { 
                return this.oldValue; 
            }
        } 


    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

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