本文整理汇总了C#中Filter.GetGroupIndexByRawName方法的典型用法代码示例。如果您正苦于以下问题:C# Filter.GetGroupIndexByRawName方法的具体用法?C# Filter.GetGroupIndexByRawName怎么用?C# Filter.GetGroupIndexByRawName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Filter
的用法示例。
在下文中一共展示了Filter.GetGroupIndexByRawName方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: get_filters
Filter[] get_filters(XmlNode xml_node, Filter parent_filter)
{
XmlNodeList xns = xml_node.SelectNodes("Filter");
Filter[] fs = new Filter[xns.Count];
int i = 0;
foreach (XmlNode xn in xns)
{
string input_group_name = null;
XmlAttribute xa = xn.Attributes["input_group"];
if (xa != null && xa.Value != ROOT_INPUT_GROUP_NAME)
{//it is not zero node
if (parent_filter == null)
throw new Exception("Input group name is sepcified while no parent filter exists");
input_group_name = xa.Value.Trim();
if (input_group_name.StartsWith("$"))
{
input_group_name = input_group_name.Substring(1);
int igi = parent_filter.GetGroupIndexByRawName(input_group_name);
if (igi < 0)
throw new Exception("Input group name does not exists among group names of parent filter.\nParent filter: " + parent_filter.GetDefinition());
}
}
string comment = "";
xa = xn.Attributes["comment"];
if (xa != null)
comment = xa.Value;
Filter f = FilterApi.CreateFilter(xn.Attributes["type"].Value.Trim(), xn.Attributes["version"].Value.Trim(), xn.Attributes["definition"].Value, input_group_name, comment);
fs[i++] = f;
f.Next = get_filters(xn, f);
}
return fs;
}