EntityDataSource.DeleteParameters Property

Definition

Gets the collection of parameters that are used during a delete operation.

public:
 property System::Web::UI::WebControls::ParameterCollection ^ DeleteParameters { System::Web::UI::WebControls::ParameterCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.ParameterCollection DeleteParameters { get; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.DeleteParameters : System.Web.UI.WebControls.ParameterCollection
Public ReadOnly Property DeleteParameters As ParameterCollection

Property Value

The parameters that are used during a delete operation.

Attributes

Remarks

For web applications that target ASP.NET 4 or earlier, the property value is stored in view state and is automatically maintained between postbacks. For web applications that target ASP.NET 4.5, the property value is not stored in view state, and you must set the value for each HTTP request.

Applies to