本文整理汇总了C#中System.Xml.Linq.XComment.AddAfterSelf方法的典型用法代码示例。如果您正苦于以下问题:C# XComment.AddAfterSelf方法的具体用法?C# XComment.AddAfterSelf怎么用?C# XComment.AddAfterSelf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.Linq.XComment
的用法示例。
在下文中一共展示了XComment.AddAfterSelf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConfigImports
protected void ConfigImports(Configuration configuration, Item item, DbTable table)
{
if (string.IsNullOrWhiteSpace(table.ModuleName))
{
return;
}
XDocument xdocument = null;
var projectName = item.Project.Split('\\').LastOrDefault();
var projectNamespace = item.GetProjectName(configuration.BaseNamespace);
var projectPath = item.GetProjectFolder(configuration.OutputFolder, configuration.BaseNamespace);
var configFile = string.Format(@"{0}\ApplicationContext-{1}.xml", projectPath, projectName);
var assemblyResource = string.Format("assembly://{0}/{0}/ApplicationContext-{1}-{2}.xml", projectNamespace, projectName, table.ModuleName);
if (!File.Exists(configFile))
{
var file = new FileInfo(configFile);
if (!file.Directory.Exists)
{
file.Directory.Create();
}
xdocument = new XDocument(this.CreateElement("objects"));
xdocument.Save(configFile, SaveOptions.None);
}
else
{
xdocument = XDocument.Load(configFile);
}
var xmlns = this.GetDefaultNamespace();
var exists = (from o in xdocument.Descendants(xmlns + "import")
where
o.Attribute("resource").Value == assemblyResource
select o).Any();
if (!exists)
{
var element = this.CreateElement("import");
element.SetAttributeValue("resource", assemblyResource);
var last = xdocument.Root.Descendants(xmlns + "import").LastOrDefault();
if (last != null)
{
last.AddAfterSelf(element);
}
else
{
var importComment = new XComment(string.Format("导入{0}模块的配置文件", table.ModuleDescription));
xdocument.Root.AddFirst(importComment);
importComment.AddAfterSelf(element);
}
File.SetAttributes(configFile, FileAttributes.Normal);
xdocument.Save(configFile, SaveOptions.None);
}
}