OwinEnvironment.FeatureMap Constructors

Definition

Overloads

OwinEnvironment.FeatureMap(Type, Func<Object,Object>)

Create a OwinEnvironment.FeatureMap for the specified feature interface type.

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Action<Object,Object>)

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>)

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>, Action<Object,Object>)

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>, Action<Object,Object>, Func<Object>)

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

OwinEnvironment.FeatureMap(Type, Func<Object,Object>)

Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs

Create a OwinEnvironment.FeatureMap for the specified feature interface type.

public:
 FeatureMap(Type ^ featureInterface, Func<System::Object ^, System::Object ^> ^ getter);
public FeatureMap (Type featureInterface, Func<object,object> getter);
new Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap : Type * Func<obj, obj> -> Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap
Public Sub New (featureInterface As Type, getter As Func(Of Object, Object))

Parameters

featureInterface
Type

The feature interface type.

getter
Func<Object,Object>

Value getter.

Applies to

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Action<Object,Object>)

Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

public:
 FeatureMap(Type ^ featureInterface, Func<System::Object ^, System::Object ^> ^ getter, Action<System::Object ^, System::Object ^> ^ setter);
public FeatureMap (Type featureInterface, Func<object,object> getter, Action<object,object> setter);
new Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap : Type * Func<obj, obj> * Action<obj, obj> -> Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap
Public Sub New (featureInterface As Type, getter As Func(Of Object, Object), setter As Action(Of Object, Object))

Parameters

featureInterface
Type

The feature interface type.

getter
Func<Object,Object>

Value getter delegate.

setter
Action<Object,Object>

Value setter delegate.

Applies to

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>)

Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

public:
 FeatureMap(Type ^ featureInterface, Func<System::Object ^, System::Object ^> ^ getter, Func<System::Object ^> ^ defaultFactory);
public FeatureMap (Type featureInterface, Func<object,object> getter, Func<object> defaultFactory);
new Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap : Type * Func<obj, obj> * Func<obj> -> Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap
Public Sub New (featureInterface As Type, getter As Func(Of Object, Object), defaultFactory As Func(Of Object))

Parameters

featureInterface
Type

The feature interface type.

getter
Func<Object,Object>

Value getter delegate.

defaultFactory
Func<Object>

Default value factory delegate.

Applies to

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>, Action<Object,Object>)

Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

public:
 FeatureMap(Type ^ featureInterface, Func<System::Object ^, System::Object ^> ^ getter, Func<System::Object ^> ^ defaultFactory, Action<System::Object ^, System::Object ^> ^ setter);
public FeatureMap (Type featureInterface, Func<object,object> getter, Func<object> defaultFactory, Action<object,object> setter);
new Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap : Type * Func<obj, obj> * Func<obj> * Action<obj, obj> -> Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap
Public Sub New (featureInterface As Type, getter As Func(Of Object, Object), defaultFactory As Func(Of Object), setter As Action(Of Object, Object))

Parameters

featureInterface
Type

The feature interface type.

getter
Func<Object,Object>

Value getter delegate.

defaultFactory
Func<Object>

Default value factory delegate.

setter
Action<Object,Object>

Value setter delegate.

Applies to

OwinEnvironment.FeatureMap(Type, Func<Object,Object>, Func<Object>, Action<Object,Object>, Func<Object>)

Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs
Source:
OwinEnvironment.cs

Initializes a new instance of OwinEnvironment.FeatureMap for the specified feature interface type.

public:
 FeatureMap(Type ^ featureInterface, Func<System::Object ^, System::Object ^> ^ getter, Func<System::Object ^> ^ defaultFactory, Action<System::Object ^, System::Object ^> ^ setter, Func<System::Object ^> ^ featureFactory);
public FeatureMap (Type featureInterface, Func<object,object> getter, Func<object> defaultFactory, Action<object,object> setter, Func<object> featureFactory);
new Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap : Type * Func<obj, obj> * Func<obj> * Action<obj, obj> * Func<obj> -> Microsoft.AspNetCore.Owin.OwinEnvironment.FeatureMap
Public Sub New (featureInterface As Type, getter As Func(Of Object, Object), defaultFactory As Func(Of Object), setter As Action(Of Object, Object), featureFactory As Func(Of Object))

Parameters

featureInterface
Type

The feature interface type.

getter
Func<Object,Object>

Value getter delegate.

defaultFactory
Func<Object>

Default value factory delegate.

setter
Action<Object,Object>

Value setter delegate.

featureFactory
Func<Object>

Feature factory delegate.

Applies to