Ext.Net.Hidden.LoadPostData C# (CSharp) Метод

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

private LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection NameValueCollection
Результат bool
        protected override bool LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            this.HasLoadPostData = true;

            string val = postCollection[this.UniqueName];

            this.SuspendScripting();
            this.RawValue = val;
            this.ResumeScripting();

            if (val != null && (this.Value == null || !this.Value.Equals(val)))
            {
                try
                {
                    this.SuspendScripting();
                    this.Value = val;
                }
                finally
                {
                    this.ResumeScripting();
                }

                return true;
            }

            return false;
        }