ATMLCommonLibrary.controls.equipment.TestStationControl.identificationControl_Error C# (CSharp) Method

identificationControl_Error() private method

private identificationControl_Error ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void identificationControl_Error(object sender, EventArgs e)
        {
            ValidationEventArgs args = e as ValidationEventArgs;
            if (args != null)
            {
                Console.WriteLine( args.Message );
            }
        }