Added support for overriding the element count of an array parameter.

This commit is contained in:
Stefanos A. 2013-10-24 22:42:12 +02:00
parent d4c1cb1bb3
commit 7296edafac

View file

@ -206,6 +206,11 @@ namespace Bind
case "flow":
d.Parameters[i].Flow = Parameter.GetFlowDirection((string)node.TypedValue);
break;
case "count":
int count;
if (Int32.TryParse(node.Value, out count))
d.Parameters[i].ElementCount = count;
break;
}
}
}