-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfaces.cs
39 lines (30 loc) · 1001 Bytes
/
Interfaces.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ClipboardHelper.FormatProviders;
namespace ClipboardHelper
{
public interface IClipboardReader : IDisposable
{
void GetData(IClipbordFormatProvider provider);
IEnumerable<IClipbordFormatProvider> GetAvalibleFromats(bool includeUnknown = false);
void Close();
}
public interface IClipboardWriter : IDisposable
{
void SetData(IClipbordFormatProvider provider);
void EnrolDataFormat(IClipbordFormatProvider provider);
void Clear();
void Close();
}
public interface IClipboard : IDisposable
{
IClipboardReader CreateReader();
void RegisterFormatProvider(Func<IClipbordFormatProvider> formatProvider);
bool IsDataAvailable(IClipbordFormatProvider provider);
void SetRequestedData(IClipbordFormatProvider provider);
bool Closed { get; }
}
}