Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XMLファイルを検証する必要がXSD Schemaあり、コードは正常に機能しました。ただし、現在、スキーマはデータベースに文字列形式で格納されており、以下に示すように検証するコードは機能していません。
XML
XSD Schema
XmlReaderSettings settings = new XmlReaderSettings(); settings.Schemas.Add(null,"SchemaURL");
親切に助けて
これを試して:
StringReader stringReader = new StringReader("XmlSchema"); XmlSchema xmlSchema; xmlSchema = XmlSchema.Read(stringReader, null); settings.Schemas.Add(xmlSchema);