Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ WriteRawAsync() [2/2]

override async Task System.Xml.XmlWellFormedWriter.WriteRawAsync ( string data)
inlinevirtual

Reimplemented from System.Xml.XmlWriter.

Definition at line 4028 of file XmlWellFormedWriter.cs.

4029 {
4030 _ = 1;
4031 try
4032 {
4033 if (data != null)
4034 {
4036 if (SaveAttrValue)
4037 {
4039 }
4040 else
4041 {
4043 }
4044 }
4045 }
4046 catch
4047 {
4048 _currentState = State.Error;
4049 throw;
4050 }
4051 }
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226
void WriteRaw(char[] buffer, int index, int count)
virtual Task WriteRawAsync(char[] buffer, int index, int count)
Definition XmlWriter.cs:683

References System.Xml.XmlWellFormedWriter._attrValueCache, System.Xml.XmlWellFormedWriter._currentState, System.Xml.XmlWellFormedWriter._writer, System.Xml.XmlWellFormedWriter.AdvanceStateAsync(), System.Threading.Tasks.Task< TResult >.ConfigureAwait(), System.Xml.XmlWellFormedWriter.SaveAttrValue, System.Xml.XmlWellFormedWriter.AttributeValueCache.WriteRaw(), and System.Xml.XmlWriter.WriteRawAsync().