React to HttpAbstractions changes
This commit is contained in:
parent
d07a072287
commit
e4e40033b1
|
|
@ -558,11 +558,21 @@ namespace Microsoft.AspNet.Hosting
|
|||
{
|
||||
}
|
||||
|
||||
public TFeature Get<TFeature>()
|
||||
{
|
||||
return default(TFeature);
|
||||
}
|
||||
|
||||
public IEnumerator<KeyValuePair<Type, object>> GetEnumerator()
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
|
||||
public void Set<TFeature>(TFeature instance)
|
||||
{
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator()
|
||||
{
|
||||
yield break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue