AjaxControlToolkit.TabContainer.LoadPostData C# (CSharp) 메소드

LoadPostData() 보호된 메소드

protected LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection System.Collections.Specialized.NameValueCollection
리턴 bool
        protected override bool LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            int tabIndex = ActiveTabIndex;
            bool result = base.LoadPostData(postDataKey, postCollection);
            if(ActiveTabIndex == 0 || tabIndex != ActiveTabIndex)
                return true;

            return result;
        }