ExpressionBindingCollection.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除指定的 ExpressionBinding 物件。
多載
Remove(String) |
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。 從集合中移除指定的 ExpressionBinding 物件。 |
Remove(ExpressionBinding) |
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。 從集合中移除指定的 ExpressionBinding 物件。 |
Remove(String, Boolean) |
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。 從集合中移除指定的 ExpressionBinding 物件。 |
Remove(String)
從集合中移除指定的 ExpressionBinding 物件。
此 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
要從集合中移除之 PropertyName 的 ExpressionBinding。
適用於
Remove(ExpressionBinding)
從集合中移除指定的 ExpressionBinding 物件。
此 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
要從集合中移除的 ExpressionBinding。
適用於
Remove(String, Boolean)
從集合中移除指定的 ExpressionBinding 物件。
此 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
要從集合中移除之 PropertyName 的 ExpressionBinding。
- addToRemovedList
- Boolean
true
表示將 ExpressionBinding 附加至 RemovedBindings 集合,否則為 false
。