ProvideApplicationPartFactoryAttribute Constructors

Definition

Overloads

ProvideApplicationPartFactoryAttribute(String)

Creates a new instance of ProvideApplicationPartFactoryAttribute with the specified type name.

ProvideApplicationPartFactoryAttribute(Type)

Creates a new instance of ProvideApplicationPartFactoryAttribute with the specified type.

ProvideApplicationPartFactoryAttribute(String)

Source:
ProvideApplicationPartFactoryAttribute.cs
Source:
ProvideApplicationPartFactoryAttribute.cs
Source:
ProvideApplicationPartFactoryAttribute.cs

Creates a new instance of ProvideApplicationPartFactoryAttribute with the specified type name.

public:
 ProvideApplicationPartFactoryAttribute(System::String ^ factoryTypeName);
public ProvideApplicationPartFactoryAttribute (string factoryTypeName);
new Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute : string -> Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute
Public Sub New (factoryTypeName As String)

Parameters

factoryTypeName
String

The assembly qualified type name.

Applies to

ProvideApplicationPartFactoryAttribute(Type)

Source:
ProvideApplicationPartFactoryAttribute.cs
Source:
ProvideApplicationPartFactoryAttribute.cs
Source:
ProvideApplicationPartFactoryAttribute.cs

Creates a new instance of ProvideApplicationPartFactoryAttribute with the specified type.

public:
 ProvideApplicationPartFactoryAttribute(Type ^ factoryType);
public ProvideApplicationPartFactoryAttribute (Type factoryType);
new Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute : Type -> Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute
Public Sub New (factoryType As Type)

Parameters

factoryType
Type

The factory type.

Applies to