C# 클래스 PortableRx.Reactive.Disposables.RefCountDisposable

Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed.
상속: ICancelable
파일 보기 프로젝트 열기: robfe/PortableRx 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Disposes the underlying disposable only when all dependent disposables have been disposed.

RefCountDisposable ( IDisposable disposable ) : System

Initializes a new instance of the T:Catch.Reactive.Disposables.RefCountDisposable class with the specified disposable.

비공개 메소드들

메소드 설명
GetDisposable ( ) : IDisposable
Release ( ) : void

메소드 상세

Dispose() 공개 메소드

Disposes the underlying disposable only when all dependent disposables have been disposed.
public Dispose ( ) : void
리턴 void

RefCountDisposable() 공개 메소드

Initializes a new instance of the T:Catch.Reactive.Disposables.RefCountDisposable class with the specified disposable.
is null.
public RefCountDisposable ( IDisposable disposable ) : System
disposable IDisposable Underlying disposable.
리턴 System