Don't throw for OnStarting or OnCompleted calls. (#864)

This commit is contained in:
David Fowler 2017-06-08 08:53:03 -10:00 committed by GitHub
parent 9dedc98094
commit b686298133
1 changed files with 0 additions and 2 deletions

View File

@ -31,12 +31,10 @@ namespace Microsoft.AspNetCore.Http.Features
public virtual void OnStarting(Func<object, Task> callback, object state)
{
throw new NotImplementedException();
}
public virtual void OnCompleted(Func<object, Task> callback, object state)
{
throw new NotImplementedException();
}
}
}