OwinStartupAttribute Constructor

 

Initializes a new instance of the OwinStartupAttribute class.

Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Overload List

Name Description
System_CAPS_pubmethod OwinStartupAttribute(String, Type)

Initializes a new instance of the OwinStartupAttribute class

System_CAPS_pubmethod OwinStartupAttribute(String, Type, String)

Initializes a new instance of the OwinStartupAttribute class

System_CAPS_pubmethod OwinStartupAttribute(Type)

Initializes a new instance of the OwinStartupAttribute class

System_CAPS_pubmethod OwinStartupAttribute(Type, String)

Initializes a new instance of the OwinStartupAttribute class

See Also

OwinStartupAttribute Class
Microsoft.Owin Namespace

Return to top

OwinStartupAttribute Constructor (String, Type)

Initializes a new instance of the OwinStartupAttribute class

Syntax

public OwinStartupAttribute(
    string friendlyName,
    Type startupType
)
public:
OwinStartupAttribute(
    String^ friendlyName,
    Type^ startupType
)
new : 
        friendlyName:string *
        startupType:Type -> OwinStartupAttribute
Public Sub New (
    friendlyName As String,
    startupType As Type
)

Parameters

  • friendlyName
    Type: System.String

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

Return to top

OwinStartupAttribute Constructor (String, Type, String)

Initializes a new instance of the OwinStartupAttribute class

Syntax

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

Parameters

  • friendlyName
    Type: System.String

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

Return to top

OwinStartupAttribute Constructor (Type)

Initializes a new instance of the OwinStartupAttribute class

Syntax

public OwinStartupAttribute(
    Type startupType
)
public:
OwinStartupAttribute(
    Type^ startupType
)
new : 
        startupType:Type -> OwinStartupAttribute
Public Sub New (
    startupType As Type
)

Parameters

Return to top

OwinStartupAttribute Constructor (Type, String)

Initializes a new instance of the OwinStartupAttribute class

Syntax

public OwinStartupAttribute(
    Type startupType,
    string methodName
)
public:
OwinStartupAttribute(
    Type^ startupType,
    String^ methodName
)
new : 
        startupType:Type *
        methodName:string -> OwinStartupAttribute
Public Sub New (
    startupType As Type,
    methodName As String
)

Parameters

Return to top