Microsoft.Protocols.TestSuites.Common.ValidateUtil.ValidateUtil C# (CSharp) Method

ValidateUtil() public method

Initializes a new instance of the ValidateUtil class with specified parameters.
public ValidateUtil ( ITestSite testSite, bool throwException, bool performSchemaValidation, bool ignoreSoapFaultSchemaValidationForSoap12 ) : System.IO
testSite ITestSite Implements Microsoft.Protocols.TestTools.IAdapter.Site.
throwException bool Indicate that whether throw exception when schema validation not success.
performSchemaValidation bool Indicate that whether perform schema validation.
ignoreSoapFaultSchemaValidationForSoap12 bool Indicate that whether ignore schema validation for SOAP fault in SOAP1.2.
return System.IO
        public ValidateUtil(ITestSite testSite, bool throwException, bool performSchemaValidation, bool ignoreSoapFaultSchemaValidationForSoap12)
        {
            this.site = testSite;
            this.throwException = throwException;
            this.performSchemaValidation = performSchemaValidation;
            this.ignoreSoapFaultSchemaValidationForSoap12 = ignoreSoapFaultSchemaValidationForSoap12;
        }