RenamedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / IO / System / IO / RenamedEventArgs.cs / 1 / RenamedEventArgs.cs

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

 
namespace System.IO { 

    using System.Diagnostics; 
    using System.Security.Permissions;
    using System;

 
    /// 
    /// Provides data for the  event. 
    ///  
    public class RenamedEventArgs : FileSystemEventArgs {
        private string oldName; 
        private string oldFullPath;

        /// 
        ///     
        ///       Initializes a new instance of the 
        ///       class. 
        ///     
        /// 
        public RenamedEventArgs(WatcherChangeTypes changeType, string directory, string name, string oldName) 
            : base(changeType, directory, name) {

            // Ensure that the directory name ends with a "\"
            if (!directory.EndsWith("\\", StringComparison.Ordinal)) { 
                directory = directory + "\\";
            } 
 
            this.oldName = oldName;
            this.oldFullPath = directory + oldName; 
        }

        /// 
        ///     
        ///       Gets
        ///       the previous fully qualified path of the affected file or directory. 
        ///     
        /// 
        public string OldFullPath { 
            get {
                new FileIOPermission(FileIOPermissionAccess.Read, Path.GetPathRoot(oldFullPath)).Demand();
                return oldFullPath;
            } 
        }
 
        ///  
        ///    
        ///       Gets 
        ///       the old name of the affected file or directory.
        ///    
        /// 
        public string OldName { 
            get {
                return oldName; 
            } 
        }
    } 


}


                        

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