public abstract class AutoDisposableHolder : IAutoDisposableHolder,
IDisposable
Public MustInherit Class AutoDisposableHolder
Implements IAutoDisposableHolder, IDisposable
public ref class AutoDisposableHolder abstract : IAutoDisposableHolder,
IDisposable
[<AbstractClassAttribute>]
type AutoDisposableHolder =
class
interface IAutoDisposableHolder
interface IDisposable
end
AutoDisposableHolder | Создаёт объект с указанием количества подписчиков. Когда все подписчики будут отписаны, то для объекта будет автоматически вызван Dispose в момент отписки. |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
Dispose(Boolean) | Освобождает ресурсы, занимаемые объектом. |
Equals | Determines whether the specified object is equal to the current object. (Унаследован от Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Унаследован от Object) |
GetHashCode | Serves as the default hash function. (Унаследован от Object) |
GetType | Gets the Type of the current instance. (Унаследован от Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Унаследован от Object) |
Subscribe | Указывает, что для объекта был добавлен подписчик. Если метод вернул true, то пока не вызван Unsubscribe, можно использовать объект. |
ToString | Returns a string that represents the current object. (Унаследован от Object) |
Unsubscribe | Выполняет отписку от объекта, т.е. уведомляет, что мы более не используем объект. Если это последний подписчик, то объект может быть освобождён. |