HtmlForgeX

API Reference

Class

Helpers

Namespace HtmlForgeX.Email
Assembly HtmlForgeX.Email
Modifiers static

Utility class providing helper methods for email operations.

Inheritance

  • Object
  • Helpers

Methods

public static String HtmlEncode(String value) #
Returns: String

Encodes a string for safe HTML display. This method replaces special characters with their HTML entity equivalents,

Parameters

value System.String requiredposition: 0
public static Boolean IsFileLocked(String fileName) #
Returns: Boolean

Checks if file is locked/used by another process

Parameters

fileName System.String requiredposition: 0
The file name to check.

Returns

True if the file is locked, false otherwise.

public static Boolean Open(String filePath, Boolean open) #
Returns: Boolean

Opens up any file using assigned Application

Parameters

filePath System.String requiredposition: 0
open System.Boolean requiredposition: 1
public static String UrlEncode(String url) #
Returns: String

Encodes a URL string for safe transmission in HTTP requests. This method replaces certain characters with their percent-encoded equivalents,

Parameters

url System.String requiredposition: 0