本文整理汇总了C#中Services.Exception方法的典型用法代码示例。如果您正苦于以下问题:C# Services.Exception方法的具体用法?C# Services.Exception怎么用?C# Services.Exception使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Services
的用法示例。
在下文中一共展示了Services.Exception方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetDeployItem
public DeployTemplateItem GetDeployItem(Services.ILogService logService)
{
LoadedXMLProvisioningTemplate loadedTemplate = null;
try
{
//load the template xml file
loadedTemplate = this.TemplateInfo.LoadXmlTemplate();
}
catch (Exception ex)
{
logService.Exception("Error reading template file " + this.ItemPath, ex);
return null;
}
if (loadedTemplate.Template != null)
{
if (this.TemplateInfo.TemplatePath == this.ItemPath)
{
//deploy complete template
var deployItem = new DeployTemplateItem()
{
Config = this.ProvisioningConfig,
Template = loadedTemplate.Template,
TemplateName = loadedTemplate.TemplateFileName,
IsCompleteTemplate = true,
};
return deployItem;
}
else
{
//deploy specific file(s)
var src = Helpers.ProvisioningHelper.MakeRelativePath(this.ItemPath, this.TemplateInfo.ResourcesPath);
var files = loadedTemplate.Template.Files.Where(
f => f.Src.StartsWith(src, StringComparison.InvariantCultureIgnoreCase)
).ToList();
if (files.Count > 0)
{
//create a new template for the specified file
var filesUnderFolderTemplate = new OfficeDevPnP.Core.Framework.Provisioning.Model.ProvisioningTemplate(loadedTemplate.Template.Connector);
filesUnderFolderTemplate.Files.AddRange(files);
var deployItem = new DeployTemplateItem()
{
Config = this.ProvisioningConfig,
Template = filesUnderFolderTemplate,
TemplateName = loadedTemplate.TemplateFileName,
IsCompleteTemplate = false,
};
return deployItem;
}
}
}
return null;
}