Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the OwinStartupAttribute class.
Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | OwinStartupAttribute(String, Type) | Initializes a new instance of the OwinStartupAttribute class | 
| .jpeg) | OwinStartupAttribute(String, Type, String) | Initializes a new instance of the OwinStartupAttribute class | 
| .jpeg) | OwinStartupAttribute(Type) | Initializes a new instance of the OwinStartupAttribute class | 
| .jpeg) | 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. 
- startupType 
 Type: System.Type- The startup class 
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. 
- startupType 
 Type: System.Type- The startup class 
- methodName 
 Type: System.String- Specifies which method to call 
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
- startupType 
 Type: System.Type- The startup class 
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
- startupType 
 Type: System.Type- The startup class 
- methodName 
 Type: System.String- Specifies which method to call 
Return to top