React to HttpAbstractions changes

This commit is contained in:
David Fowler 2015-12-31 13:39:39 -08:00
parent d07a072287
commit e4e40033b1
1 changed files with 10 additions and 0 deletions

View File

@ -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;