DispatchOperation.AutoDisposeParameters Property

Definition

Gets or sets whether parameters are to be automatically disposed.

public:
 property bool AutoDisposeParameters { bool get(); void set(bool value); };
public bool AutoDisposeParameters { get; set; }
member this.AutoDisposeParameters : bool with get, set
Public Property AutoDisposeParameters As Boolean

Property Value

true if the parameters are to be automatically disposed; otherwise false.

Remarks

This property determines whether the service disposes all System.IDisposable parameters (input, output or reference parameters) that were created while processing a message. The default value is true. Set this property to false to prevent the system from disposing resources. In this case, you are responsible for the parameter lifetimes. See the OperationCompleted event if you need to dispose parameters when the operation completes.

Applies to