Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the CompositeDisposable class with the specified number of disposables.
Namespace: System.Reactive.Disposables
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Sub New ( _
capacity As Integer _
)
'Usage
Dim capacity As Integer
Dim instance As New CompositeDisposable(capacity)
public CompositeDisposable(
int capacity
)
public:
CompositeDisposable(
int capacity
)
new :
capacity:int -> CompositeDisposable
public function CompositeDisposable(
capacity : int
)
Parameters
- capacity
Type: System.Int32
The number of disposables that the new CompositeDisposable can initially store.