I have received an XSD schema that starts with (actual values replaced with ...
):
<xs:schema targetNamespace="..."
elementFormDefault="..."
xmlns="..."
xmlns:mstns="..."
xmlns:xs="...">
Does the presence of xmlns:mstns
mean that this XSD was generated from a C# class using xsd.exe? Question What's xmlns:mstns in a XSD? implies that it is added from XmlSerializer
, and I know you can create an XSD from a C# class.