XmlUnit.Xunit.DiffConfiguration.DiffConfiguration C# (CSharp) Method

DiffConfiguration() public method

public DiffConfiguration ( string description, bool useValidatingParser, WhitespaceHandling whitespaceHandling, bool ignoreAttributeOrder, bool ignoreAttribute ) : System.Xml
description string
useValidatingParser bool
whitespaceHandling WhitespaceHandling
ignoreAttributeOrder bool
ignoreAttribute bool
return System.Xml
        public DiffConfiguration(string description,
                                 bool useValidatingParser,
                                 WhitespaceHandling whitespaceHandling,
                                 bool ignoreAttributeOrder,
                                 bool ignoreAttribute)
        {
            _description = description;
            _useValidatingParser = useValidatingParser;
            _whitespaceHandling = whitespaceHandling;
            this.ignoreAttributeOrder = ignoreAttributeOrder;
            this.IgnoreAttribute = ignoreAttribute;

        }

Same methods

DiffConfiguration::DiffConfiguration ( ) : System.Xml
DiffConfiguration::DiffConfiguration ( WhitespaceHandling whitespaceHandling ) : System.Xml
DiffConfiguration::DiffConfiguration ( bool useValidatingParser ) : System.Xml
DiffConfiguration::DiffConfiguration ( string description ) : System.Xml
DiffConfiguration::DiffConfiguration ( string description, WhitespaceHandling whitespaceHandling ) : System.Xml
DiffConfiguration::DiffConfiguration ( string description, bool useValidatingParser, WhitespaceHandling whitespaceHandling ) : System.Xml
DiffConfiguration