ExpressionBindingCollection.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the specified ExpressionBinding object from the collection.
Overloads
Remove(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the specified ExpressionBinding object from the collection. |
Remove(ExpressionBinding) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the specified ExpressionBinding object from the collection. |
Remove(String, Boolean) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the specified ExpressionBinding object from the collection. |
Remove(String)
Removes the specified ExpressionBinding object from the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void Remove(System::String ^ propertyName);
public void Remove (string propertyName);
member this.Remove : string -> unit
Public Sub Remove (propertyName As String)
Parameters
- propertyName
- String
The PropertyName of the ExpressionBinding to remove from the collection.
Applies to
Remove(ExpressionBinding)
Removes the specified ExpressionBinding object from the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void Remove(System::Web::UI::ExpressionBinding ^ binding);
public void Remove (System.Web.UI.ExpressionBinding binding);
member this.Remove : System.Web.UI.ExpressionBinding -> unit
Public Sub Remove (binding As ExpressionBinding)
Parameters
- binding
- ExpressionBinding
The ExpressionBinding to remove from the collection.
Applies to
Remove(String, Boolean)
Removes the specified ExpressionBinding object from the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void Remove(System::String ^ propertyName, bool addToRemovedList);
public void Remove (string propertyName, bool addToRemovedList);
member this.Remove : string * bool -> unit
Public Sub Remove (propertyName As String, addToRemovedList As Boolean)
Parameters
- propertyName
- String
The PropertyName of the ExpressionBinding to remove from the collection.
- addToRemovedList
- Boolean
true
to add the ExpressionBinding to the RemovedBindings collection; otherwise, false
.