Microsoft.Protocols.TestSuites.Common.SchemaValidation.GetSoapStandardSchema C# (CSharp) Method

GetSoapStandardSchema() private static method

A method used to get the standard soap schema definitions from xsd file.
private static GetSoapStandardSchema ( ) : string[]
return string[]
        private static string[] GetSoapStandardSchema()
        {
            List<string> soapSchema = new List<string>();
            XmlDocument xsdFile = new XmlDocument();
            xsdFile.Load("SOAP11.xsd");
            soapSchema.Add(xsdFile.OuterXml);
            xsdFile.Load("SOAP12.xsd");
            soapSchema.Add(xsdFile.OuterXml);

            return soapSchema.ToArray();
        }