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

◆ ChildElementNamespace

XmlDictionaryString System.Runtime.Serialization.CollectionDataContract.ChildElementNamespace
get

Definition at line 751 of file CollectionDataContract.cs.

752 {
753 [RequiresUnreferencedCode("Data Contract Serialization and Deserialization might require types that cannot be statically analyzed. Make sure all of the required types are preserved.")]
754 get
755 {
756 if (_childElementNamespace == null)
757 {
758 lock (this)
759 {
760 if (_childElementNamespace == null)
761 {
763 {
764 XmlDictionaryString childNamespaceToDeclare = ClassDataContract.GetChildNamespaceToDeclare(this, ItemType, new XmlDictionary());
767 }
769 }
770 }
771 }
773 }
774 }