System.Xml.Schema.XdrValidator.ProcessElement C# (CSharp) Method

ProcessElement() private method

private ProcessElement ( ) : void
return void
        private void ProcessElement() {
            Push(elementName);
            if (isProcessContents) {
                nsManager.PopScope();
            }
            context.ElementDecl = ThoroughGetElementDecl();
            if (context.ElementDecl != null) {
                ValidateStartElement();
                ValidateEndStartElement();
                context.NeedValidateChildren = true;
                context.ElementDecl.ContentValidator.InitValidation(context);
            }
        }