Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ICheckoutAttributeFormatter.cs

using Nop.Core.Domain.Customers;

namespace Nop.Services.Orders;

/// 
/// Checkout attribute helper
/// 
public partial interface ICheckoutAttributeFormatter
{
    /// 
    /// Formats attributes
    /// 
    /// Attributes in XML format
    /// Customer
    /// Separator
    /// A value indicating whether to encode (HTML) values
    /// A value indicating whether to render prices
    /// A value indicating whether to HTML hyperlink tags could be rendered (if required)
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the attributes
    /// 
    Task FormatAttributesAsync(string attributesXml,
        Customer customer,
        string separator = "
", bool htmlEncode = true, bool renderPrices = true, bool allowHyperlinks = true); }