GraphLinkCollection.Remove 方法 (GraphLink, GraphLink%)
从 System.Collections.Generic.ICollection 中移除特定对象的第一个匹配项。
命名空间: Microsoft.VisualStudio.GraphModel
程序集: Microsoft.VisualStudio.GraphModel(在 Microsoft.VisualStudio.GraphModel.dll 中)
语法
声明
Public Function Remove ( _
link As GraphLink, _
<OutAttribute> ByRef resultLink As GraphLink _
) As Boolean
public bool Remove(
GraphLink link,
out GraphLink resultLink
)
public:
bool Remove(
GraphLink^ link,
[OutAttribute] GraphLink^% resultLink
)
member Remove :
link:GraphLink *
resultLink:GraphLink byref -> bool
public function Remove(
link : GraphLink,
resultLink : GraphLink
) : boolean
参数
link
类型:Microsoft.VisualStudio.GraphModel.GraphLink要从 System.Collections.Generic.ICollection 中删除的链接。
resultLink
类型:Microsoft.VisualStudio.GraphModel.GraphLink%System.Collections.Generic.ICollection 中已删除的项。
返回值
类型:Boolean
如果成功从 System.Collections.Generic.ICollection 中删除了项,则为 true;否则为 false。如果在原始 System.Collections.Generic.ICollection 中找不到项,此方法也会返回 false。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。