internal static HTMLComposablePart CreateRootPart(HtmlElement rootElement)
        {
            var partDefinition = new HTMLComposablePartDefinition(rootElement);

            partDefinition.toString = rootIdentifier;
            return(partDefinition.CreateRootPart());
        }
示例#2
0
 public static HTMLComposablePart CreateRootPart(HtmlElement rootElement)
 {
     return(HTMLComposablePartDefinition.CreateRootPart(rootElement));
 }