ExpressionBindingCollection.Remove 方法

定义

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

重载

Remove(String)

此 API 支持产品基础结构,不能在代码中直接使用。

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

Remove(ExpressionBinding)

此 API 支持产品基础结构,不能在代码中直接使用。

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

Remove(String, Boolean)

此 API 支持产品基础结构,不能在代码中直接使用。

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

Remove(String)

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 void Remove(System::String ^ propertyName);
public void Remove (string propertyName);
member this.Remove : string -> unit
Public Sub Remove (propertyName As String)

参数

propertyName
String

要从集合中移除的 ExpressionBindingPropertyNameThe PropertyName of the ExpressionBinding to remove from the collection.

适用于

Remove(ExpressionBinding)

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

此 API 支持产品基础结构,不能在代码中直接使用。

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)

参数

binding
ExpressionBinding

要从该集合中移除的 ExpressionBindingThe ExpressionBinding to remove from the collection.

适用于

Remove(String, Boolean)

从集合中移除指定的 ExpressionBinding 对象。Removes the specified ExpressionBinding object from the collection.

此 API 支持产品基础结构,不能在代码中直接使用。

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)

参数

propertyName
String

要从集合中移除的 ExpressionBindingPropertyNameThe PropertyName of the ExpressionBinding to remove from the collection.

addToRemovedList
Boolean

如果将 ExpressionBinding 添加到 RemovedBindings 集合,则为 true;否则为 falsetrue to add the ExpressionBinding to the RemovedBindings collection; otherwise, false.

适用于