Html Structure |
Namespace: MicaSystems.Utils
[DataContractAttribute] public struct Html : IHtmlString
The Html type exposes the following members.
| Name | Description | |
|---|---|---|
| Html(FormattableString) |
Creates a new Html from the given FormattableString.
Static parts of the template will be considered safe and won't be encoded while variable
parts (between '{' and '}') will be html encoded.
This constructor will use the current culture for formatting.
| |
| Html(IHtmlString) |
Creates a new Html from the given IHtmlString.
| |
| Html(IFormatProvider, FormattableString) |
Creates a new Html from the given FormattableString and IFormatProvider.
Static parts of the template will be considered safe and won't be encoded while variable
parts (between '{' and '}') will be html encoded.
|
| Name | Description | |
|---|---|---|
| IsEmpty |
Returns true if this html string contains no character.
| |
| Length |
Returns the length (after encoding) of this html string.
|
| Name | Description | |
|---|---|---|
| Concat(IEnumerableIHtmlString) |
Concatenates the given html strings.
| |
| Concat(IHtmlString) |
Concatenates the given html strings.
| |
| Concat(Html) |
Concatenates the given html strings.
| |
| Concat(IEnumerableHtml) |
Concatenates the given html strings.
| |
| Create |
Creates a new Html instance from the given FormattableString.
Static parts of the template will be considered safe and won't be encoded while variable
parts (between '{' and '}') will be html encoded.
The current culture is used for formatting.
| |
| FromText |
Creates a new Html instance from the given text (will be encoded).
| |
| FromTrustedHtml |
Creates a new Html instance from the given html string (won't be encoded).
Use this method only if you are absolutely certain that this string cannot contain malicious html code.
| |
| Join(Html, IEnumerableHtml) |
Concatenates all the given html strings, using the given separator. This method works in a similar way to
Join(String, String) | |
| Join(Html, IEnumerableIHtmlString) |
Concatenates all the given html strings, using the given separator. This method works in a similar way to
Join(String, String) | |
| ToHtmlString | Returns an HTML-encoded string. | |
| ToString | Returns an HTML-encoded string (same behavior as ToHtmlString). (Overrides ValueTypeToString.) |
| Name | Description | |
|---|---|---|
| (String to Html) |
Converts the given text into a Html instance (the text will be encoded)
| |
| (HtmlString to Html) |
Converts the given HtmlString instance into a Html instance.
| |
| (HtmlBuilder to Html) |
Converts the given HtmlBuilder instance into a Html instance.
|
| Name | Description | |
|---|---|---|
| AsT |
Casts an object to another type. Returns default(T) if the object is null.
(Defined by Utils_Other.) | |
| EqualsAll |
Checks that this object is equal to every object in parameters.
(Defined by Utils_Other.) | |
| EqualsAny |
Checks that this object is equal to at least one of the parameters.
(Defined by Utils_Other.) | |
| GetString |
Converts an object to String using ToString() method, else returns String.Empty.
(Defined by Utils_Other.) | |
| IsGenericList | Overloaded.
Checks if this object is a System.Collections.Generic.List.
(Defined by Utils_Linq.) | |
| IsGenericList(Type) | Overloaded.
Checks if this object is a System.Collections.Generic.List using type as T.
(Defined by Utils_Linq.) | |
| Serialize | Overloaded.
Serializes an object into an XML document.
(Defined by Utils_Xml.) | |
| Serialize(String) | Overloaded.
Serializes an object into an XML document.
(Defined by Utils_Xml.) | |
| SerializeJson | Overloaded.
Serializes an object using a DataContractJsonSerializer.
(Defined by Utils_String.) | |
| SerializeJson(ListType) | Overloaded.
Serializes an object using a DataContractJsonSerializer.
(Defined by Utils_String.) | |
| SerializeJson(DataContractJsonSerializerSettings) | Overloaded.
Serializes an object using a DataContractJsonSerializer.
(Defined by Utils_String.) |