iControl.iCallPerpetualHandler.get_filter_match_algorithm C# (CSharp) Method

get_filter_match_algorithm() private method

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