System.Xml.Schema.XsdBuilder.XsdEntry.XsdEntry C# (CSharp) Méthode

XsdEntry() public méthode

public XsdEntry ( SchemaNames n, State state, State nextStates, XsdAttributeEntry attributes, XsdInitFunction init, XsdEndChildFunction end, bool parseContent ) : System.IO
n SchemaNames
state State
nextStates State
attributes XsdAttributeEntry
init XsdInitFunction
end XsdEndChildFunction
parseContent bool
Résultat System.IO
            public XsdEntry(SchemaNames.Token n,
                            State state,
                            State[] nextStates,
                            XsdAttributeEntry[] attributes,
                            XsdInitFunction init,
                            XsdEndChildFunction end,
                            bool parseContent)
            {
                Name = n;
                CurrentState = state;
                NextStates = nextStates;
                Attributes = attributes;
                InitFunc = init;
                EndChildFunc = end;
                ParseContent = parseContent;
            }
        };
XsdBuilder.XsdEntry