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

◆ WriteQualifiedNameAsync() [2/3]

virtual async Task System.Xml.XmlWriter.WriteQualifiedNameAsync ( string localName,
string? ns )
inlinevirtualinherited

Definition at line 722 of file XmlWriter.cs.

723 {
724 if (ns != null && ns.Length > 0)
725 {
726 string text = LookupPrefix(ns);
727 if (text == null)
728 {
730 }
733 }
735 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Xml_UndefNamespace
Definition SR.cs:290
Definition SR.cs:7
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226
string? LookupPrefix(string ns)
virtual Task WriteStringAsync(string? text)
Definition XmlWriter.cs:668

References System.Xml.ArgumentException, System.Threading.Tasks.Task< TResult >.ConfigureAwait(), System.Xml.Dictionary, System.SR.Format(), System.Xml.XmlWriter.LookupPrefix(), System.text, System.Xml.XmlWriter.WriteStringAsync(), and System.SR.Xml_UndefNamespace.

Referenced by System.Xml.XmlDictionaryAsyncCheckWriter.WriteQualifiedNameAsync(), System.Xml.XmlAsyncCheckWriter.WriteQualifiedNameAsync(), and System.Xml.XmlCharCheckingWriter.WriteQualifiedNameAsync().