Show / Hide Table of Contents

Interface ISanitizer

Sanitize strings to remove soft hyphens and other special characters.

Namespace: Dalamud.Game.Text.Sanitizer
Assembly: Dalamud.dll
Syntax
public interface ISanitizer

Methods

| Improve this Doc View Source

Sanitize(IEnumerable<String>)

Creates a list of sanitized strings using current clientLanguage.

Declaration
IEnumerable<string> Sanitize(IEnumerable<string> unsanitizedStrings)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> unsanitizedStrings

List of unsanitized string to sanitize.

Returns
Type Description
System.Collections.Generic.IEnumerable<System.String>

A list of sanitized strings.

| Improve this Doc View Source

Sanitize(IEnumerable<String>, ClientLanguage)

Creates a list of sanitized strings using requested clientLanguage.

Declaration
IEnumerable<string> Sanitize(IEnumerable<string> unsanitizedStrings, ClientLanguage clientLanguage)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> unsanitizedStrings

List of unsanitized string to sanitize.

ClientLanguage clientLanguage

Target language for sanitized strings.

Returns
Type Description
System.Collections.Generic.IEnumerable<System.String>

A list of sanitized strings.

| Improve this Doc View Source

Sanitize(String)

Creates a sanitized string using current clientLanguage.

Declaration
string Sanitize(string unsanitizedString)
Parameters
Type Name Description
System.String unsanitizedString

An unsanitized string to sanitize.

Returns
Type Description
System.String

A sanitized string.

| Improve this Doc View Source

Sanitize(String, ClientLanguage)

Creates a sanitized string using request clientLanguage.

Declaration
string Sanitize(string unsanitizedString, ClientLanguage clientLanguage)
Parameters
Type Name Description
System.String unsanitizedString

An unsanitized string to sanitize.

ClientLanguage clientLanguage

Target language for sanitized strings.

Returns
Type Description
System.String

A sanitized string.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX