Interface ICloseable<T>
Provides a generic mechanism for objects that can be closed, where the type of the close controller is specified. This interface is useful for objects that have type-specific closing logic or resources that need to be released in a particular manner.
Inherited Members
Namespace: PoeShared.Scaffolding
Assembly: PoeShared.dll
Syntax
public interface ICloseable<T> : INotifyPropertyChanged
Type Parameters
Name | Description |
---|---|
T | The type of the close controller. |
Properties
Name | Description |
---|---|
CloseController | Gets or sets the controller responsible for closing the object of a specific type. |
Extension Methods
NotifyPropertyChangedExtensions.GetPropertyName<TObject, T1>(TObject, Expression<Func<TObject, T1>>)