Removed unused methods

This commit is contained in:
Sławomir Rosiek
2017-05-31 20:10:01 +02:00
committed by Steve Sanderson
parent 6d85e752e1
commit 4ceed817a3

View File

@@ -21,7 +21,6 @@ namespace Microsoft.AspNetCore.NodeServices.HostingModels
/// <seealso cref="Microsoft.AspNetCore.NodeServices.HostingModels.OutOfProcessNodeInstance" /> /// <seealso cref="Microsoft.AspNetCore.NodeServices.HostingModels.OutOfProcessNodeInstance" />
internal class HttpNodeInstance : OutOfProcessNodeInstance internal class HttpNodeInstance : OutOfProcessNodeInstance
{ {
private readonly static int streamBufferSize = 16 * 1024;
private static readonly Regex PortMessageRegex = private static readonly Regex PortMessageRegex =
new Regex(@"^\[Microsoft.AspNetCore.NodeServices.HttpNodeHost:Listening on port (\d+)\]$"); new Regex(@"^\[Microsoft.AspNetCore.NodeServices.HttpNodeHost:Listening on port (\d+)\]$");
@@ -140,28 +139,6 @@ namespace Microsoft.AspNetCore.NodeServices.HostingModels
} }
} }
private static async Task<T> ReadJsonAsync<T>(Stream stream, CancellationToken cancellationToken)
{
var json = Encoding.UTF8.GetString(await ReadAllBytesAsync(stream, cancellationToken));
return JsonConvert.DeserializeObject<T>(json, jsonSerializerSettings);
}
private static async Task<byte[]> ReadAllBytesAsync(Stream input, CancellationToken cancellationToken)
{
byte[] buffer = new byte[streamBufferSize];
using (var ms = new MemoryStream())
{
int read;
while ((read = await input.ReadAsync(buffer, 0, buffer.Length, cancellationToken)) > 0)
{
ms.Write(buffer, 0, read);
}
return ms.ToArray();
}
}
#pragma warning disable 649 // These properties are populated via JSON deserialization #pragma warning disable 649 // These properties are populated via JSON deserialization
private class RpcJsonResponse private class RpcJsonResponse
{ {