DocumentApplicationJournalEntryEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / TrustUi / MS / Internal / documents / Application / DocumentApplicationJournalEntryEventArgs.cs / 1 / DocumentApplicationJournalEntryEventArgs.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// Description: Used as a custom journal entry for changes in the DocumentApplication's UI state. 
// 
// History:
//  06/24/2005 - [....] created 
//
//---------------------------------------------------------------------------

using MS.Internal.PresentationUI;   // For FriendAccessAllowed 

using System; 
using System.Runtime.Serialization; 
using System.Security.Permissions;
using System.Windows; 
using System.Windows.Documents;
using System.Windows.Navigation;

namespace MS.Internal.Documents.Application 
{
    ///  
    /// SignatureStatusEventArgs, object used when firing SigStatus change. 
    /// 
    [FriendAccessAllowed] 
    internal class DocumentApplicationJournalEntryEventArgs : EventArgs
    {

        //----------------------------------------------------- 
        //
        //  Constructors 
        // 
        //-----------------------------------------------------
        ///  
        /// The constructor
        /// 
        public DocumentApplicationJournalEntryEventArgs(DocumentApplicationState state)
        { 
            _state = state;
        } 
 
        //------------------------------------------------------
        // 
        //  Public Properties
        //
        //-----------------------------------------------------
        ///  
        /// State value stored at this JournalEntry
        ///  
        public DocumentApplicationState State 
        {
            get { return _state; } 
        }

        //------------------------------------------------------
        // 
        //  Private Fields
        // 
        //------------------------------------------------------ 
        private DocumentApplicationState _state;
    } 
}

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