iControl 101 - #13 - Data Groups
Data Groups can be useful when writing iRules. A data group is simply a group of related elements, such as a set of IP addresses, URI paths, or document extensions. When used in conjuction with the ...
Published May 01, 2008
Version 1.0Mark_Domansky
Feb 01, 2012Nimbostratus
This notation is very confusing:
$Class.get_string_class((,"img_extensions"))
What is seems you are trying to convey here is that get_string_class is expecting an array. It doesn't require an array, but will accept it. However arrays in PowerShell are denoted with the @ symbol. So these work and are generally less confusing:
$Class.get_string_class("img_extensions")
$class.get_string_class(@("img_extensions","another_class"))