AjaxControlToolkit.Jasmine.Suites.CascadingDropDownTests.TestWebService.GetContents C# (CSharp) Метод

GetContents() приватный Метод

private GetContents ( string knownCategoryValues, string category ) : AjaxControlToolkit.CascadingDropDownNameValue[]
knownCategoryValues string
category string
Результат AjaxControlToolkit.CascadingDropDownNameValue[]
        public AjaxControlToolkit.CascadingDropDownNameValue[] GetContents(string knownCategoryValues, string category)
        {
            return new CascadingDropDownNameValue[] {
                new CascadingDropDownNameValue {
                    isDefaultValue = false,
                    name = category + "_AAAName",
                    optionTitle = category + "_AAATitle",
                    value = category + "_AAAValue"
                },
                new CascadingDropDownNameValue {
                    isDefaultValue = false,
                    name = category + "_BBBName",
                    optionTitle = category + "_BBBTitle",
                    value = category + "_BBBValue"
                },
                new CascadingDropDownNameValue {
                    isDefaultValue = false,
                    name = category + "_CCCName",
                    optionTitle = category + "_CCCTitle",
                    value = category + "_CCCValue"
                },
                new CascadingDropDownNameValue {
                    isDefaultValue = false,
                    name = category + "_DDDName",
                    optionTitle = category + "_DDDTitle",
                    value = category + "_DDDValue"
                }
            };
        }
TestWebService