React to IFeatureCollection changes.
This commit is contained in:
parent
07304640ed
commit
83b2c95385
|
|
@ -27,9 +27,9 @@ namespace Kestrel
|
||||||
|
|
||||||
private void PopulateFeatures()
|
private void PopulateFeatures()
|
||||||
{
|
{
|
||||||
_features.Add(typeof(IHttpRequestFeature), this);
|
_features[typeof(IHttpRequestFeature)] = this;
|
||||||
_features.Add(typeof(IHttpResponseFeature), this);
|
_features[typeof(IHttpResponseFeature)] = this;
|
||||||
_features.Add(typeof(IHttpUpgradeFeature), this);
|
_features[typeof(IHttpUpgradeFeature)] = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal IFeatureCollection Features
|
internal IFeatureCollection Features
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue