RenamedEventArgs.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 / fx / src / Services / IO / System / IO / RenamedEventArgs.cs / 1305376 / RenamedEventArgs.cs

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

 
namespace System.IO { 

    using System.Diagnostics; 
    using System.Security.Permissions;
    using System;
    using System.Runtime.Versioning;
 

    ///  
    /// 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 {
            [ResourceExposure(ResourceScope.Machine)]
            [ResourceConsumption(ResourceScope.Machine)]
            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; 
            }
        }
    }
 

} 

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