BuildDependencySet.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Compilation / BuildDependencySet.cs / 1 / BuildDependencySet.cs

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

/************************************************************************************************************/ 
 

 
namespace System.Web.Compilation {

    using System.Collections;
    using System.Security.Permissions; 

 
    ///  
    ///    
    ///       Dependency set returned by BuildManager.GetCachedBuildDependencySet 
    ///    
    /// 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class BuildDependencySet { 

        private BuildResult _result; 
 
        internal BuildDependencySet(BuildResult result) {
            _result = result; 
        }


        public string HashCode { get { return _result.VirtualPathDependenciesHash; } } 

        public IEnumerable VirtualPaths { get { return _result.VirtualPathDependencies; } } 
    } 
}


                        

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