OwinStartupAttribute Constructors

Definition

Overloads

OwinStartupAttribute(Type)

Initializes a new instance of the OwinStartupAttribute class

OwinStartupAttribute(String, Type)

Initializes a new instance of the OwinStartupAttribute class

OwinStartupAttribute(Type, String)

Initializes a new instance of the OwinStartupAttribute class

OwinStartupAttribute(String, Type, String)

Initializes a new instance of the OwinStartupAttribute class

OwinStartupAttribute(Type)

Source:
OwinStartupAttribute.cs

Initializes a new instance of the OwinStartupAttribute class

public OwinStartupAttribute (Type startupType);
new Microsoft.Owin.OwinStartupAttribute : Type -> Microsoft.Owin.OwinStartupAttribute
Public Sub New (startupType As Type)

Parameters

startupType
Type

The startup class

Applies to

OwinStartupAttribute(String, Type)

Source:
OwinStartupAttribute.cs

Initializes a new instance of the OwinStartupAttribute class

public OwinStartupAttribute (string friendlyName, Type startupType);
new Microsoft.Owin.OwinStartupAttribute : string * Type -> Microsoft.Owin.OwinStartupAttribute
Public Sub New (friendlyName As String, startupType As Type)

Parameters

friendlyName
String

A non-default configuration, e.g. staging.

startupType
Type

The startup class

Applies to

OwinStartupAttribute(Type, String)

Source:
OwinStartupAttribute.cs

Initializes a new instance of the OwinStartupAttribute class

public OwinStartupAttribute (Type startupType, string methodName);
new Microsoft.Owin.OwinStartupAttribute : Type * string -> Microsoft.Owin.OwinStartupAttribute
Public Sub New (startupType As Type, methodName As String)

Parameters

startupType
Type

The startup class

methodName
String

Specifies which method to call

Applies to

OwinStartupAttribute(String, Type, String)

Source:
OwinStartupAttribute.cs

Initializes a new instance of the OwinStartupAttribute class

public OwinStartupAttribute (string friendlyName, Type startupType, string methodName);
new Microsoft.Owin.OwinStartupAttribute : string * Type * string -> Microsoft.Owin.OwinStartupAttribute
Public Sub New (friendlyName As String, startupType As Type, methodName As String)

Parameters

friendlyName
String

A non-default configuration, e.g. staging.

startupType
Type

The startup class

methodName
String

Specifies which method to call

Applies to