BlogML.BlogMLResource.ValidationEvent C# (CSharp) 메소드

ValidationEvent() 개인적인 정적인 메소드

private static ValidationEvent ( Object sender, ValidationEventArgs e ) : void
sender Object
e System.Xml.Schema.ValidationEventArgs
리턴 void
        private static void ValidationEvent(Object sender, ValidationEventArgs e)
        {
            string message = string.Format("Validation {0}: {1}", e.Severity, e.Message);
            throw new InvalidOperationException(message);
        }