Exemplo n.º 1
0
        private static void CreateSiteStructure(ClientContext context)
        {
            //Iterate through an XML file of the site structure and create as follows...
            Deploy deploy = new Deploy();

            deploy.CreateSite(context, "MytestSite", "MyNamedTestSite", "Some random description");
        }
Exemplo n.º 2
0
 private static void CreateSiteStructure(ClientContext context)
 {
     //Iterate through an XML file of the site structure and create as follows...
     Deploy deploy = new Deploy();
     deploy.CreateSite(context, "MytestSite", "MyNamedTestSite", "Some random description");
 }