ItemremoveRelationship Method |
Removes the passed item's node from the 'Relationships' node of the item.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic void removeRelationship(
Item item
)
Public Sub removeRelationship (
item As Item
)
public void removeRelationship(
Item item
)
public function removeRelationship(
item : Item
)
Parameters
- item
- Type: Aras.IOMItem
The relationship item to be removed.
ExceptionsException | Condition |
---|
Exception | The instance doesn't represent a single item. |
ArgumentException | -
Passed item doesn't represent a single item.
-
Passed item doesn't share its dom with this item.
-
Passed item is not a relationship.
-
'Relationship' node of this is read-only.
|
Remarks
Method doesn't sent a request to the server, it just edits item's DOM in memory. Passed item
must share its dom with this item, i.e. both items dom must reference the
same instance of ArasXmlDocument.
See Also