Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit b686298

Browse files
authored
Don't throw for OnStarting or OnCompleted calls. (#864)
1 parent 9dedc98 commit b686298

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Microsoft.AspNetCore.Http/Features/HttpResponseFeature.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ public virtual bool HasStarted
3131

3232
public virtual void OnStarting(Func<object, Task> callback, object state)
3333
{
34-
throw new NotImplementedException();
3534
}
3635

3736
public virtual void OnCompleted(Func<object, Task> callback, object state)
3837
{
39-
throw new NotImplementedException();
4038
}
4139
}
4240
}

0 commit comments

Comments
 (0)