OperationBehaviorAttribute.AutoDisposeParameters Property

Definition

Gets or sets a value that indicates 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 disposable parameters (input, output or reference parameters) that were created while processing a message. The default value is true. Set this property to false if you want to prevent the system from disposing of resources and cache them if required.

For example, if AutoDisposeParameters is false, then the sender is responsible for closing the stream on the sending side.

Applies to