AspNetEdit.Editor.ComponentModel.WebFormReferenceManager.GetRegisterDirectives C# (CSharp) Method

GetRegisterDirectives() public method

public GetRegisterDirectives ( ) : string
return string
        public string GetRegisterDirectives()
        {
            DocumentDirective[] directives = host.RootDocument.GetDirectives("Register");
            string retVal = string.Empty;
            foreach (DocumentDirective dd in directives)
                retVal += dd.ToString();
            return retVal;
        }