App_Code.Controls.RecaptchaControl.Render C# (CSharp) Method

Render() protected method

Renders the control to the specified HTML writer.
protected Render ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter /// The object that receives the control content. ///
return void
        protected override void Render(HtmlTextWriter writer)
        {
            if (!this.skipRecaptcha)
            {
                this.RenderContents(writer);
            }
        }