System.Xml.Schema.XmlSchemaCollection.SendValidationEvent C# (CSharp) 메소드

SendValidationEvent() 개인적인 메소드

private SendValidationEvent ( XmlSchemaException e ) : void
e XmlSchemaException
리턴 void
        private void SendValidationEvent(XmlSchemaException e)
        {
            if (_validationEventHandler != null)
            {
                _validationEventHandler(this, new ValidationEventArgs(e));
            }
            else
            {
                throw e;
            }
        }