|
|
@ -25,7 +25,7 @@ Imports System.Diagnostics.CodeAnalysis |
|
|
|
<Serializable()> _ |
|
|
|
<Serializable()> _ |
|
|
|
<XmlRoot(ElementName:=STR_BBCodeElementTypesXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _ |
|
|
|
<XmlRoot(ElementName:=STR_BBCodeElementTypesXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _ |
|
|
|
Public NotInheritable Class BBCodeElementTypeDictionary |
|
|
|
Public NotInheritable Class BBCodeElementTypeDictionary |
|
|
|
Inherits Dictionary(Of String, Type) |
|
|
|
Inherits Dictionary(Of String, BBCodeElementTypeDefinition) |
|
|
|
Implements IXmlSerializable |
|
|
|
Implements IXmlSerializable |
|
|
|
|
|
|
|
|
|
|
|
Private Const STR_ConfigurationItem As String = "element" |
|
|
|
Private Const STR_ConfigurationItem As String = "element" |
|
|
@ -47,12 +47,21 @@ Public NotInheritable Class BBCodeElementTypeDictionary |
|
|
|
''' </summary> |
|
|
|
''' </summary> |
|
|
|
''' <param name="tagName">The key of the element to add.</param> |
|
|
|
''' <param name="tagName">The key of the element to add.</param> |
|
|
|
''' <param name="value">The value of the element to add.</param> |
|
|
|
''' <param name="value">The value of the element to add.</param> |
|
|
|
Public Shadows Sub Add(ByVal tagName As String, ByVal value As Type) |
|
|
|
Private Shadows Sub Add(ByVal tagName As String, ByVal value As BBCodeElementTypeDefinition) |
|
|
|
ValidateTagName(tagName) |
|
|
|
ValidateTagName(tagName) |
|
|
|
ValidateBBCodeElementType(value) |
|
|
|
ValidateBBCodeElementType(value.Type) |
|
|
|
MyBase.Add(tagName.ToUpperInvariant(), value) |
|
|
|
MyBase.Add(tagName.ToUpperInvariant(), value) |
|
|
|
End Sub |
|
|
|
End Sub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
''' <summary> |
|
|
|
|
|
|
|
''' Adds the specified key and value to the dictionary. |
|
|
|
|
|
|
|
''' </summary> |
|
|
|
|
|
|
|
''' <param name="tagName">The key of the element to add.</param> |
|
|
|
|
|
|
|
''' <param name="value">The value of the element to add.</param> |
|
|
|
|
|
|
|
Public Shadows Sub Add(ByVal tagName As String, ByVal value As Type, ByVal requireClosingTag As Boolean) |
|
|
|
|
|
|
|
Add(tagName.ToUpperInvariant(), New BBCodeElementTypeDefinition() With {.TagName = tagName, .Type = value, .RequireClosingTag = requireClosingTag}) |
|
|
|
|
|
|
|
End Sub |
|
|
|
|
|
|
|
|
|
|
|
''' <summary>This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute" /> to the class.</summary> |
|
|
|
''' <summary>This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute" /> to the class.</summary> |
|
|
|
''' <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns> |
|
|
|
''' <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns> |
|
|
|
Public Function GetSchema() As System.Xml.Schema.XmlSchema Implements System.Xml.Serialization.IXmlSerializable.GetSchema |
|
|
|
Public Function GetSchema() As System.Xml.Schema.XmlSchema Implements System.Xml.Serialization.IXmlSerializable.GetSchema |
|
|
@ -74,10 +83,14 @@ Public NotInheritable Class BBCodeElementTypeDictionary |
|
|
|
'* Reads the items |
|
|
|
'* Reads the items |
|
|
|
'* |
|
|
|
'* |
|
|
|
Do While (reader.Read() AndAlso reader.LocalName = STR_ConfigurationItem AndAlso reader.NamespaceURI = STR_BBCodeSchemaNamespace) |
|
|
|
Do While (reader.Read() AndAlso reader.LocalName = STR_ConfigurationItem AndAlso reader.NamespaceURI = STR_BBCodeSchemaNamespace) |
|
|
|
Dim name = reader.GetAttribute("name") |
|
|
|
Dim definition As New BBCodeElementTypeDefinition() |
|
|
|
Dim type = System.Type.GetType(reader.GetAttribute("type")) |
|
|
|
With definition |
|
|
|
If (type.IsSubclassOf(GetType(BBCodeElement))) Then |
|
|
|
.TagName = reader.GetAttribute("name") |
|
|
|
Me.Add(name, type) |
|
|
|
Boolean.TryParse(reader.GetAttribute("requireClosingTag"), .RequireClosingTag) |
|
|
|
|
|
|
|
.Type = System.Type.GetType(reader.GetAttribute("type")) |
|
|
|
|
|
|
|
End With |
|
|
|
|
|
|
|
If (definition.Type.IsSubclassOf(GetType(BBCodeElement))) Then |
|
|
|
|
|
|
|
Me.Add(definition.TagName, definition) |
|
|
|
End If |
|
|
|
End If |
|
|
|
Loop |
|
|
|
Loop |
|
|
|
|
|
|
|
|
|
|
@ -95,7 +108,8 @@ Public NotInheritable Class BBCodeElementTypeDictionary |
|
|
|
For Each it In Me |
|
|
|
For Each it In Me |
|
|
|
writer.WriteStartElement(STR_ConfigurationItem, STR_BBCodeSchemaNamespace) |
|
|
|
writer.WriteStartElement(STR_ConfigurationItem, STR_BBCodeSchemaNamespace) |
|
|
|
writer.WriteAttributeString("name", it.Key.ToLower(CultureInfo.InvariantCulture)) |
|
|
|
writer.WriteAttributeString("name", it.Key.ToLower(CultureInfo.InvariantCulture)) |
|
|
|
writer.WriteAttributeString("type", it.Value.AssemblyQualifiedName) |
|
|
|
writer.WriteAttributeString("requireClosingTag", it.Value.RequireClosingTag.ToString()) |
|
|
|
|
|
|
|
writer.WriteAttributeString("type", it.Value.Type.AssemblyQualifiedName) |
|
|
|
writer.WriteEndElement() |
|
|
|
writer.WriteEndElement() |
|
|
|
Next |
|
|
|
Next |
|
|
|
|
|
|
|
|
|
|
|