Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@ -27,7 +27,6 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#if NET_2_0
using System;
using System.Web;
using System.Web.Configuration;
@ -37,39 +36,6 @@ namespace System.Web.Profile
{
public static class ProfileManager
{
#if TARGET_J2EE
const string Profiles_config = "Profiles.config";
const string Profiles_ProfileProviderCollection = "Profiles.ProfileProviderCollection";
static ProfileSection config
{
get
{
object o = AppDomain.CurrentDomain.GetData (Profiles_config);
if (o == null) {
config = (ProfileSection) WebConfigurationManager.GetSection ("system.web/profile");
return (ProfileSection) config;
}
return (ProfileSection) o;
}
set
{
AppDomain.CurrentDomain.SetData (Profiles_config, value);
}
}
static ProfileProviderCollection providersCollection
{
get
{
object o = AppDomain.CurrentDomain.GetData (Profiles_ProfileProviderCollection);
return (ProfileProviderCollection) o;
}
set
{
AppDomain.CurrentDomain.SetData (Profiles_ProfileProviderCollection, value);
}
}
#else
static ProfileSection config;
static ProfileProviderCollection providersCollection;
@ -77,7 +43,6 @@ namespace System.Web.Profile
{
config = (ProfileSection) WebConfigurationManager.GetSection ("system.web/profile");
}
#endif
public static int DeleteInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
{
@ -212,4 +177,3 @@ namespace System.Web.Profile
}
}
#endif