Oct 11 2016 10:02 AM - edited Oct 11 2016 10:02 AM
Hi
I understand this for loading and saving templates :-
// Save template using XML provider
XMLFileSystemTemplateProvider provider = new XMLFileSystemTemplateProvider(@"c:\temp\pnpprovisioningdemo", "");
string templateName = "template.xml";
provider.SaveAs(template, templateName);
// Load the saved model again
ProvisioningTemplate p2 = provider.GetTemplate(templateName);
// Get the available, valid templates
var templates = provider.GetTemplates();
foreach(var template1 in templates)
{
Console.WriteLine("Found template with ID {0}", template1.ID);
}
But where do Connectors fit in ?
Thanks
Nigel
Oct 13 2016 02:38 AM
Oct 13 2016 05:14 AM
Thanks Иван Вагунин