Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

46 lines
1.2 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="ModuleConfigurationInfo.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web {
using System;
using System.Threading;
using System.Configuration;
using System.Web.Compilation;
using System.Web.Util;
// used by HttpApplication to keep track of configuration
// info read by native config
internal class ModuleConfigurationInfo {
string _type;
string _name;
string _precondition;
internal ModuleConfigurationInfo(string name, string type, string condition) {
_type = type;
_name = name;
_precondition = condition;
}
internal string Type {
get {
return _type;
}
}
internal string Name {
get {
return _name;
}
}
internal string Precondition {
get {
return _precondition;
}
}
}
}