//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /************************************************************************************************************/ namespace System.Web.Compilation { using System.Collections; using System.Security.Permissions; /// /// /// Dependency set returned by BuildManager.GetCachedBuildDependencySet /// /// 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; } } } }