//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.Compilation {
using System;
using System.ComponentModel;
using System.Security.Permissions;
///
/// Allows a ResourceProviderFactory to specify the type of the associated
/// DesignTimeResourceProviderFactory.
///
[AttributeUsage(AttributeTargets.Class)]
public sealed class DesignTimeResourceProviderFactoryAttribute : Attribute {
private string _factoryTypeName;
public DesignTimeResourceProviderFactoryAttribute(Type factoryType) {
_factoryTypeName = factoryType.AssemblyQualifiedName;
}
public DesignTimeResourceProviderFactoryAttribute(string factoryTypeName) {
_factoryTypeName = factoryTypeName;
}
public string FactoryTypeName {
get {
return _factoryTypeName;
}
}
public override bool IsDefaultAttribute() {
return (_factoryTypeName == null);
}
}
}