DesignTimeResourceProviderFactoryAttribute Constructors

Definition

Initializes a new instance of the DesignTimeResourceProviderFactoryAttribute class.

Overloads

DesignTimeResourceProviderFactoryAttribute(String)

Initializes a new instance of the DesignTimeResourceProviderFactoryAttribute class with the attribute set to the specified factory type name.

DesignTimeResourceProviderFactoryAttribute(Type)

Initializes a new instance of the DesignTimeResourceProviderFactoryAttribute class with the attribute set to the qualified name of the specified factory type.

DesignTimeResourceProviderFactoryAttribute(String)

Initializes a new instance of the DesignTimeResourceProviderFactoryAttribute class with the attribute set to the specified factory type name.

public:
 DesignTimeResourceProviderFactoryAttribute(System::String ^ factoryTypeName);
public DesignTimeResourceProviderFactoryAttribute (string factoryTypeName);
new System.Web.Compilation.DesignTimeResourceProviderFactoryAttribute : string -> System.Web.Compilation.DesignTimeResourceProviderFactoryAttribute
Public Sub New (factoryTypeName As String)

Parameters

factoryTypeName
String

The name of the resource provider factory type.

Remarks

The DesignTimeResourceProviderFactoryAttribute attribute is set to factoryTypeName.

See also

Applies to

DesignTimeResourceProviderFactoryAttribute(Type)

Initializes a new instance of the DesignTimeResourceProviderFactoryAttribute class with the attribute set to the qualified name of the specified factory type.

public:
 DesignTimeResourceProviderFactoryAttribute(Type ^ factoryType);
public DesignTimeResourceProviderFactoryAttribute (Type factoryType);
new System.Web.Compilation.DesignTimeResourceProviderFactoryAttribute : Type -> System.Web.Compilation.DesignTimeResourceProviderFactoryAttribute
Public Sub New (factoryType As Type)

Parameters

factoryType
Type

The type of the resource provider factory.

Remarks

The FactoryTypeName property is set to the AssemblyQualifiedName property value of the factoryType parameter.

See also

Applies to