System.Xml.Schema.XmlSchemaCollection.SendValidationEvent C# (CSharp) Method

SendValidationEvent() private method

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