本文整理汇总了C#中IItem.TryGetTagValue方法的典型用法代码示例。如果您正苦于以下问题:C# IItem.TryGetTagValue方法的具体用法?C# IItem.TryGetTagValue怎么用?C# IItem.TryGetTagValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IItem
的用法示例。
在下文中一共展示了IItem.TryGetTagValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EqualsLocalId
internal static bool EqualsLocalId(IItem item1, IItem item2, List<string> localIdentityTagNames)
{
try
{
byte[] tag1, tag2;
foreach (string tagName in localIdentityTagNames)
{
item1.TryGetTagValue(tagName, out tag1);
item2.TryGetTagValue(tagName, out tag2);
if (tag1 == null || tag2 == null)
{
throw new Exception("Tag required for local identity not found on the IndexItem");
}
return ByteArrayComparerUtil.CompareByteArrays(tag1, tag2);
}
return true;
}
catch (Exception ex)
{
throw new Exception("Unexptected error while comparing local id.", ex);
}
}
示例2: GetFullDataIdField
private static byte[] GetFullDataIdField(byte[] indexId, IItem item, FullDataIdField fullDataIdField)
{
byte[] retVal = null;
// If FullDataIdFieldList present on the FullDataIdField process that
if (fullDataIdField.FullDataIdFieldList != null && fullDataIdField.FullDataIdFieldList.Count > 0)
{
retVal = GetFullDataIdList(indexId, item, fullDataIdField.FullDataIdFieldList);
}
else // Process rest of the fullDataIdField
{
switch (fullDataIdField.FullDataIdType)
{
case FullDataIdType.IndexId:
retVal = indexId;
break;
case FullDataIdType.ItemId:
retVal = item.ItemId;
break;
case FullDataIdType.Tag:
if (!item.TryGetTagValue(fullDataIdField.TagName, out retVal))
throw new Exception("Tag missing required to generate FullDataId");
break;
}
}
return retVal;
}