System.Xml.Schema.NfaContentValidator.NfaContentValidator C# (CSharp) Method

NfaContentValidator() private method

private NfaContentValidator ( BitSet firstpos, BitSet followpos, SymbolsDictionary symbols, Positions positions, int endMarkerPos, XmlSchemaContentType contentType, bool isOpen, bool isEmptiable ) : System
firstpos BitSet
followpos BitSet
symbols SymbolsDictionary
positions Positions
endMarkerPos int
contentType XmlSchemaContentType
isOpen bool
isEmptiable bool
return System
        internal NfaContentValidator(
            BitSet firstpos, BitSet[] followpos, SymbolsDictionary symbols, Positions positions, int endMarkerPos,
            XmlSchemaContentType contentType, bool isOpen, bool isEmptiable)  : base(contentType, isOpen, isEmptiable) {
            this.firstpos = firstpos;
            this.followpos = followpos;
            this.symbols = symbols;
            this.positions = positions;
            this.endMarkerPos = endMarkerPos;
        }