66 lines
2.5 KiB
C#
66 lines
2.5 KiB
C#
using System.Xml;
|
|
|
|
namespace Nop.Services.ExportImport;
|
|
|
|
/// <summary>
|
|
/// Extensions
|
|
/// </summary>
|
|
public static partial class Extensions
|
|
{
|
|
/// <summary>
|
|
/// Write string async
|
|
/// </summary>
|
|
/// <param name="xmlWriter">XML writer</param>
|
|
/// <param name="nodeName">Node name</param>
|
|
/// <param name="nodeValue">Node value</param>
|
|
/// <param name="ignore">Ignore</param>
|
|
/// <param name="defaulValue">Default value</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public static async Task WriteStringAsync(this XmlWriter xmlWriter, string nodeName, object nodeValue, bool ignore = false, string defaulValue = "")
|
|
{
|
|
if (ignore)
|
|
return;
|
|
|
|
await xmlWriter.WriteElementStringAsync(null, nodeName, null, nodeValue?.ToString() ?? defaulValue);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write start element async
|
|
/// </summary>
|
|
/// <param name="xmlWriter">XML writer</param>
|
|
/// <param name="nodeName">Node name</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public static async Task WriteStartElementAsync(this XmlWriter xmlWriter, string nodeName)
|
|
{
|
|
await xmlWriter.WriteStartElementAsync(null, nodeName, null);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write attribute string async
|
|
/// </summary>
|
|
/// <param name="xmlWriter">XML writer</param>
|
|
/// <param name="nodeName">Node name</param>
|
|
/// <param name="nodeValue">Node value</param>
|
|
/// <param name="defaulValue">Default value</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public static async Task WriteAttributeStringAsync(this XmlWriter xmlWriter, string nodeName, object nodeValue, string defaulValue = "")
|
|
{
|
|
await xmlWriter.WriteAttributeStringAsync(null, nodeName, null, nodeValue?.ToString() ?? defaulValue);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write element string async
|
|
/// </summary>
|
|
/// <param name="xmlWriter">XML writer</param>
|
|
/// <param name="nodeName">Node name</param>
|
|
/// <param name="nodeValue">Node value</param>
|
|
/// <param name="defaulValue">Default value</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the
|
|
/// </returns>
|
|
public static async Task WriteElementStringAsync(this XmlWriter xmlWriter, string nodeName, object nodeValue, string defaulValue = "")
|
|
{
|
|
await xmlWriter.WriteElementStringAsync(null, nodeName, null, nodeValue?.ToString() ?? defaulValue);
|
|
}
|
|
} |