Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ WriteHtmlAttributeTextBlock()

unsafe void System.Xml.HtmlEncodedRawTextWriter.WriteHtmlAttributeTextBlock ( char * pSrc,
char * pSrcEnd )
inlineprotectedinherited

Definition at line 339 of file HtmlEncodedRawTextWriter.cs.

340 {
341 if ((_currentAttributeProperties & (AttributeProperties)7u) != 0)
342 {
343 if ((_currentAttributeProperties & AttributeProperties.BOOLEAN) == 0)
344 {
345 if ((_currentAttributeProperties & (AttributeProperties)5u) != 0 && !_doNotEscapeUriAttributes)
346 {
348 }
349 else
350 {
352 }
353 }
354 }
355 else if ((_currentElementProperties & ElementProperties.HAS_NS) != 0)
356 {
358 }
359 else
360 {
362 }
363 }
unsafe void WriteHtmlAttributeText(char *pSrc, char *pSrcEnd)
unsafe void WriteUriAttributeText(char *pSrc, char *pSrcEnd)
unsafe void WriteAttributeTextBlock(char *pSrc, char *pSrcEnd)

References System.Xml.HtmlEncodedRawTextWriter._currentAttributeProperties, System.Xml.HtmlEncodedRawTextWriter._currentElementProperties, System.Xml.HtmlEncodedRawTextWriter._doNotEscapeUriAttributes, System.Xml.Dictionary, System.Xml.XmlEncodedRawTextWriter.WriteAttributeTextBlock(), System.Xml.HtmlEncodedRawTextWriter.WriteHtmlAttributeText(), and System.Xml.HtmlEncodedRawTextWriter.WriteUriAttributeText().

Referenced by System.Xml.HtmlEncodedRawTextWriter.WriteString().