OwinFeatureCollection.Get Method

Definition

Overloads

Get(Type)
Get<TFeature>()

Retrieves the requested feature from the collection.

Get(Type)

Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
System.Object.Get(System.Type)
public:
 System::Object ^ Get(Type ^ key);
public object Get (Type key);
member this.Get : Type -> obj
Public Function Get (key As Type) As Object

Parameters

key
Type

Returns

Applies to

Get<TFeature>()

Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs
Source:
OwinFeatureCollection.cs

Retrieves the requested feature from the collection.

public:
generic <typename TFeature>
 virtual TFeature Get();
public TFeature Get<TFeature> ();
abstract member Get : unit -> 'Feature
override this.Get : unit -> 'Feature
Public Function Get(Of TFeature) () As TFeature

Type Parameters

TFeature

The feature key.

Returns

TFeature

The requested feature, or null if it is not present.

Implements

Applies to