jellyfin/MediaBrowser.Model/Net/ISocket.cs

30 lines
1.1 KiB
C#
Raw Normal View History

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