##// END OF EJS Templates
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation

File last commit:

r93:dc4942d09e74 v2
r138:f75cfa58e3d4 v2
Show More
IComponentContainer.cs
8 lines | 130 B | text/x-csharp | CSharpLexer
/ Implab / IComponentContainer.cs
cin
improved tracing...
r93 using System;
namespace Implab {
public interface IComponentContainer {
void Add(IDisposable component);
}
}