DataServiceContext.DetachLink(Object, String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 DataServiceContext 正在追蹤的連結清單中移除指定的連結。
public:
bool DetachLink(System::Object ^ source, System::String ^ sourceProperty, System::Object ^ target);
public bool DetachLink (object source, string sourceProperty, object target);
member this.DetachLink : obj * string * obj -> bool
Public Function DetachLink (source As Object, sourceProperty As String, target As Object) As Boolean
參數
- source
- Object
要標記成刪除的連結中所含有的來源物件。
- sourceProperty
- String
來源物件上的屬性名稱,表示來源與目標之間連結中的來源。
- target
- Object
連結中所含有的目標物件,這個連結繫結至來源物件。 目標物件必須是來源屬性所識別的型別,或是該型別的子型別。
傳回
如果指定的實體已中斷連結,則傳回 true;否則傳回 false
。
例外狀況
當 source
或 sourceProperty
為 null
時。
當 sourceProperty
是空字串時。
備註
不論連結的目前狀態為何,DataServiceContext 正在追蹤的任何連結都可以被中斷連結。