public sealed class UnityDisposableContainer : IUnityDisposableContainer
Public NotInheritable Class UnityDisposableContainer
Implements IUnityDisposableContainer
public ref class UnityDisposableContainer sealed : IUnityDisposableContainer
[<SealedAttribute>]
type UnityDisposableContainer =
class
interface IUnityDisposableContainer
end
UnityDisposableContainer | Инициализирует новый экземпляр класса UnityDisposableContainer |
DisposeAllAsync | Освобождает все экземпляры IDisposable и IAsyncDisposable, которые были зарегистрированы в текущем объекте, в порядке, обратном регистрации. После вызова невозможны дополнительные регистрации. |
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) |
Register(IAsyncDisposable) | Регистрирует заданный экземпляр IAsyncDisposable, чтобы его метод DisposeAsync был вызван при освобождении контейнера методом DisposeAllAsync. Возвращает true, если объект был зарегистрирован, или false, если объект не может быть зарегистрирован, т.к. все объекты уже были освобождены. |
Register(IDisposable) | Регистрирует заданный экземпляр IDisposable, чтобы его метод Dispose был вызван при освобождении контейнера методом DisposeAllAsync. Возвращает true, если объект был зарегистрирован, или false, если объект не может быть зарегистрирован, т.к. все объекты уже были освобождены. |
ToString | Returns a string that represents the current object. (Унаследован от Object) |