jellyfin/MediaBrowser.Model/Net/ISocket.cs

28 lines
995 B
C#
Raw Normal View History

2016-11-08 19:44:23 +01:00
using System;
2017-03-02 21:50:09 +01:00
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2016-11-08 19:44:23 +01:00
namespace MediaBrowser.Model.Net
{
2017-03-02 21:50:09 +01:00
/// <summary>
/// Provides a common interface across platforms for UDP sockets used by this SSDP implementation.
/// </summary>
2016-11-08 19:44:23 +01:00
public interface ISocket : IDisposable
{
2017-03-02 21:50:09 +01:00
IpAddressInfo LocalIPAddress { get; }
2016-11-08 19:44:23 +01:00
2017-05-24 21:12:55 +02:00
Task<SocketReceiveResult> ReceiveAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken);
2017-06-01 08:25:07 +02:00
int Receive(byte[] buffer, int offset, int count);
2017-05-24 21:12:55 +02:00
IAsyncResult BeginReceive(byte[] buffer, int offset, int count, AsyncCallback callback);
SocketReceiveResult EndReceive(IAsyncResult result);
2016-12-07 21:02:34 +01:00
2017-03-02 21:50:09 +01:00
/// <summary>
/// Sends a UDP message to a particular end point (uni or multicast).
/// </summary>
2017-05-24 21:12:55 +02:00
Task SendToAsync(byte[] buffer, int offset, int bytes, IpEndPointInfo endPoint, CancellationToken cancellationToken);
2016-12-07 21:02:34 +01:00
}
2017-03-02 21:50:09 +01:00
}