Class DisposableOptions
Configuration options for IDisposable.
Implements
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class DisposableOptions : IParameterObject
Constructors
| Improve this Doc View SourceDisposableOptions()
Initializes a new instance of the DisposableOptions class.
Declaration
public DisposableOptions()
Remarks
The following table shows the initial property values for an instance of DisposableOptions.
Property | Initial Value |
---|---|
LeaveOpen | false |
Properties
| Improve this Doc View SourceLeaveOpen
Gets or sets a value indicating whether a disposable object should bypass the mechanism for releasing unmanaged resources. Default is false
.
Declaration
public bool LeaveOpen { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|