BBCodeDocumentLoad(String, Boolean, IEnumerableString) Method
Loads a string of BBCode as a BBCodeDocument object
Namespace: DevCase.Core.DataProcessing.Html.BBCodeAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static BBCodeDocument Load(
string bbCode,
bool throwOnError,
IEnumerable<string> singularTags
)
Public Shared Function Load (
bbCode As String,
throwOnError As Boolean,
singularTags As IEnumerable(Of String)
) As BBCodeDocument
Dim bbCode As String
Dim throwOnError As Boolean
Dim singularTags As IEnumerable(Of String)
Dim returnValue As BBCodeDocument
returnValue = BBCodeDocument.Load(bbCode, throwOnError,
singularTags)
public:
static BBCodeDocument^ Load(
String^ bbCode,
bool throwOnError,
IEnumerable<String^>^ singularTags
)
static member Load :
bbCode : string *
throwOnError : bool *
singularTags : IEnumerable<string> -> BBCodeDocument
No code example is currently available or this language may not be supported.
- bbCode String
-
A string of BBCode text.
- throwOnError Boolean
-
Whether to throw an exception on parse error. If false, the error is ignored.
- singularTags IEnumerableString
-
A list of tags which should be considered singular by the parser.
Singular tags are self closing and may not have children.
BBCodeDocument
The DOM representation of the text.