DataServiceContext.DetachLink 方法
從 DataServiceContext 正在追蹤的連結清單中移除指定的連結。
命名空間: System.Data.Services.Client
組件: Microsoft.Data.Services.Client (在 Microsoft.Data.Services.Client.dll 中)
語法
'宣告
Public Function DetachLink ( _
source As Object, _
sourceProperty As String, _
target As Object _
) As Boolean
'用途
Dim instance As DataServiceContext
Dim source As Object
Dim sourceProperty As String
Dim target As Object
Dim returnValue As Boolean
returnValue = instance.DetachLink(source, _
sourceProperty, target)
public bool DetachLink(
Object source,
string sourceProperty,
Object target
)
public:
bool DetachLink(
Object^ source,
String^ sourceProperty,
Object^ target
)
member DetachLink :
source:Object *
sourceProperty:string *
target:Object -> bool
public function DetachLink(
source : Object,
sourceProperty : String,
target : Object
) : boolean
參數
- source
型別:System.Object
要標記成刪除的連結中所含有的來源物件。
- sourceProperty
型別:System.String
來源物件上的屬性名稱,表示來源與目標之間連結中的來源。
- target
型別:System.Object
連結中所含有的目標物件,這個連結繫結至來源物件。目標物件必須是來源屬性所識別的型別,或是該型別的子型別。
傳回值
型別:System.Boolean
如果指定的實體已卸離則傳回 true,否則為 false。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | 當 source 或 sourceProperty 為 nullnull 參考 (在 Visual Basic 中為 Nothing) 時。 |
ArgumentException | 當 sourceProperty 是空字串時。 |
備註
不論連結的目前狀態為何,DataServiceContext 正在追蹤的任何連結都可以被中斷連結。