From 7df5c87815e7c543a4e46f2ac4da90e4c7156517 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sun, 18 Mar 2018 15:39:20 -0700 Subject: [PATCH] Add copyright headers to new files --- .../Internal/Protocol/JsonArrayPool.cs | 5 ++++- .../Internal/Protocol/Utf8BufferTextReader.cs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/JsonArrayPool.cs b/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/JsonArrayPool.cs index 057f7a5e44..5b4ae0e69e 100644 --- a/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/JsonArrayPool.cs +++ b/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/JsonArrayPool.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; using System.Buffers; using Newtonsoft.Json; diff --git a/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/Utf8BufferTextReader.cs b/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/Utf8BufferTextReader.cs index 22509c02d4..f09e475fb6 100644 --- a/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/Utf8BufferTextReader.cs +++ b/src/Microsoft.AspNetCore.SignalR.Common/Internal/Protocol/Utf8BufferTextReader.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; using System.IO; using System.Runtime.InteropServices; using System.Text;