Beispiel #1
0
        private void HandleModelFunctionElement(XmlReader reader)
        {
            ModelFunction modelFunction = new ModelFunction(this);

            modelFunction.Parse(reader);
            this.Functions.Add((Function)modelFunction);
        }
Beispiel #2
0
        private void HandleModelFunctionElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var function = new ModelFunction(this);

            function.Parse(reader);

            Functions.Add(function);
        }
Beispiel #3
0
        private void HandleModelFunctionElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var function = new ModelFunction(this);

            function.Parse(reader);

            Functions.Add(function);
        }