mirror of
https://github.com/Radarr/Radarr
synced 2026-01-15 12:03:08 +01:00
14 lines
412 B
C#
14 lines
412 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.AspNet.SignalR.Infrastructure
|
|
{
|
|
/// <summary>
|
|
/// Implemented on anything that has the ability to write raw binary data
|
|
/// </summary>
|
|
public interface IBinaryWriter
|
|
{
|
|
void Write(ArraySegment<byte> data);
|
|
}
|
|
}
|