iControl.iCallPerpetualHandler.get_filter_value C# (CSharp) Method

get_filter_value() private method

private get_filter_value ( string handlers, string subscriptions, string filters ) : string[][][]
handlers string
subscriptions string
filters string
return string[][][]
        public string[][][] get_filter_value(
		string [] handlers,
		string [] [] subscriptions,
		string [] [] [] filters
	)
        {
            object [] results = this.Invoke("get_filter_value", new object [] {
                handlers,
                subscriptions,
                filters});
            return ((string [] [] [])(results[0]));
        }
iCallPerpetualHandler