本文整理汇总了C#中ICustomAttribute.DocId方法的典型用法代码示例。如果您正苦于以下问题:C# ICustomAttribute.DocId方法的具体用法?C# ICustomAttribute.DocId怎么用?C# ICustomAttribute.DocId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ICustomAttribute
的用法示例。
在下文中一共展示了ICustomAttribute.DocId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Include
public override bool Include(ICustomAttribute attribute)
{
if (_attributeDocIds.Contains(attribute.DocId()))
return false;
return base.Include(attribute);
}
示例2: Include
public bool Include(ICustomAttribute attribute)
{
string typeId = attribute.DocId();
string removeUsages = "RemoveUsages:" + typeId;
if (_docIds.Contains(removeUsages))
return false;
return _docIds.Contains(typeId);
}
示例3: Include
public bool Include(ICustomAttribute attribute)
{
string typeId = attribute.DocId();
string removeUsages = "RemoveUsages:" + typeId;
// special case: attribute usage can be removed without removing
// the attribute itself
if (_docIds.Contains(removeUsages))
return false;
// include so long as it isn't in the exclude list.
return !_docIds.Contains(typeId);
}