DeleteLink Method
Deletes the link specified by the LinkId.
Syntax
public void deleteLink(String linkId);
Remarks
Deletes the link specified by the LinkId permanently. The Links collection will not be updated until the ListLinks method is called.
// Deletes the first link.
shareFile.ListLinks();
string
LinkId = shareFile.Link[0].Id;
shareFile.DeleteLink(LinkId);