Brew.Webforms.Widget.GetPostData C# (CSharp) Method

GetPostData() private method

private GetPostData ( ) : object>.IDictionary
return object>.IDictionary
        private IDictionary<string, object> GetPostData()
        {
            ParsePostbackData();

            Dictionary<string, object> widgetState;

            widgetState = (from hash in _postdata
                                         where hash.ControlID == this.TargetControl.ClientID && hash.WidgetName == this.Name
                                         select hash.Options).FirstOrDefault() ?? new Dictionary<string, object>();

            return widgetState;
        }