Adf.Web.UI.RowSelectorColumn.ParticipantRadioButton.IPostBackDataHandler C# (CSharp) Method

IPostBackDataHandler() private method

This doesn't differ from the original implementaion... except now i'methodName using my own RenderednameAttribute instead of the InputControl implementation.
private IPostBackDataHandler ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection System.Collections.Specialized.NameValueCollection
return bool
            bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
            {
                bool result = false;

                string postedValue = postCollection[RenderedNameAttribute];
                if (postedValue != null && postedValue == Value)
                {
                    if (Checked)
                    {
                        return result;
                    }
                    Checked = true;
                    result = true;
                }
                else if (Checked)
                {
                    Checked = false;
                }
                return result;
            }

Same methods

RowSelectorColumn.ParticipantRadioButton::IPostBackDataHandler ( ) : void