You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
356 B
17 lines
356 B
#if FAT |
|
|
|
using System; |
|
|
|
namespace LinqInternal.Threading |
|
{ |
|
internal interface IExtendedDisposable : IDisposable |
|
{ |
|
bool IsDisposed { get; } |
|
|
|
void DisposedConditional(Action whenDisposed, Action whenNotDisposed); |
|
|
|
TReturn DisposedConditional<TReturn>(Func<TReturn> whenDisposed, Func<TReturn> whenNotDisposed); |
|
} |
|
} |
|
|
|
#endif |