DataServiceContext.DeleteLink 메서드
링크의 상태를 DataServiceContext에서 추적 중인 링크 목록에서 삭제된 것으로 변경합니다.
네임스페이스: System.Data.Services.Client
어셈블리: Microsoft.Data.Services.Client(Microsoft.Data.Services.Client.dll)
구문
‘선언
Public Sub DeleteLink ( _
source As Object, _
sourceProperty As String, _
target As Object _
)
‘사용 방법
Dim instance As DataServiceContext
Dim source As Object
Dim sourceProperty As String
Dim target As Object
instance.DeleteLink(source, sourceProperty, _
target)
public void DeleteLink(
Object source,
string sourceProperty,
Object target
)
public:
void DeleteLink(
Object^ source,
String^ sourceProperty,
Object^ target
)
member DeleteLink :
source:Object *
sourceProperty:string *
target:Object -> unit
public function DeleteLink(
source : Object,
sourceProperty : String,
target : Object
)
매개 변수
- source
유형: System.Object
삭제된 것으로 표시할 링크의 원본 개체입니다.
- sourceProperty
유형: System.String
대상 개체에 액세스하는 데 사용되는 원본 개체의 탐색 속성 이름입니다.
- target
유형: System.Object
원본 개체에 바인딩된 링크의 대상 개체입니다.대상 개체는 원본 속성 또는 하위 형식으로 식별되는 형식이어야 합니다.
예외
예외 | 조건 |
---|---|
ArgumentNullException | source, sourceProperty 또는 target이 null인 경우 |
InvalidOperationException | source 또는 target이 Detached 또는 Added 상태인 경우 또는 sourceProperty가 컬렉션이 아닌 경우 |
주의
DataServiceContext에서 추적 중인 모든 링크는 현재 상태에 관계없이 분리할 수 있습니다.