C# Класс PortableRx.Reactive.Disposables.Disposable

Provides a set of static methods for creating Disposables.
Показать файл Открыть проект

Открытые методы

Метод Описание
Create ( System.Action dispose ) : IDisposable

Creates a disposable object that invokes the specified action when disposed.

Описание методов

Create() публичный статический Метод

Creates a disposable object that invokes the specified action when disposed.
is null.
public static Create ( System.Action dispose ) : IDisposable
dispose System.Action Action to run during the first call to . The action is guaranteed to be run at most once.
Результат IDisposable