You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In cases where XML serialization does not correctly emit code for serializing a property to/from XML, we have provided extra serialization properties of type string exclusively to provide the relevant conversions (original property is then marked with XmlIgnore attribute).
These properties are really not meant to be used as part of the public API, so it may be useful to mark them with the EditorBrowsableState.Never attribute so they do not show up in code completion or public API docs.
The text was updated successfully, but these errors were encountered:
In cases where XML serialization does not correctly emit code for serializing a property to/from XML, we have provided extra serialization properties of type
string
exclusively to provide the relevant conversions (original property is then marked withXmlIgnore
attribute).These properties are really not meant to be used as part of the public API, so it may be useful to mark them with the
EditorBrowsableState.Never
attribute so they do not show up in code completion or public API docs.The text was updated successfully, but these errors were encountered: