BBCodeDocumentLoad(String, Boolean) 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 Shared Function Load (
bbCode As String,
throwOnError As Boolean
) As BBCodeDocument
Dim bbCode As String
Dim throwOnError As Boolean
Dim returnValue As BBCodeDocument
returnValue = BBCodeDocument.Load(bbCode, throwOnError)
public:
static BBCodeDocument^ Load(
String^ bbCode,
bool throwOnError
)
static member Load :
bbCode : string *
throwOnError : bool -> 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.
BBCodeDocument
The DOM representation of the text.