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

◆ WriteBinHexAsync()

override async Task System.Xml.XmlWellFormedWriter.WriteBinHexAsync ( byte[] buffer,
int index,
int count )
inlinevirtual

Reimplemented from System.Xml.XmlWriter.

Definition at line 4161 of file XmlWellFormedWriter.cs.

4162 {
4164 {
4166 }
4167 try
4168 {
4170 await base.WriteBinHexAsync(buffer, index, count).ConfigureAwait(continueOnCapturedContext: false);
4171 }
4172 catch
4173 {
4174 _currentState = State.Error;
4175 throw;
4176 }
4177 }
static string Xml_ClosedOrError
Definition SR.cs:300
Definition SR.cs:7
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226

References System.Xml.XmlWellFormedWriter._currentState, System.Xml.XmlWellFormedWriter.AdvanceStateAsync(), System.buffer, System.Threading.Tasks.Task< TResult >.ConfigureAwait(), System.count, System.index, System.Xml.XmlWellFormedWriter.IsClosedOrErrorState, and System.SR.Xml_ClosedOrError.