React to HttpResponse.HeadersSent rename.

This commit is contained in:
Chris R 2015-06-15 17:49:20 -07:00
parent a1409e0294
commit 1639ee07e7
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ namespace Microsoft.AspNet.WebSockets.Client.Test
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ct.Response.HeadersSent) if (ct.Response.HasStarted)
{ {
throw; throw;
} }
@ -55,4 +55,4 @@ namespace Microsoft.AspNet.WebSockets.Client.Test
return host.Start(); return host.Start();
} }
} }
} }