ATMLUtilitiesLibrary.HttpServer.OnOnError C# (CSharp) Method

OnOnError() protected method

protected OnOnError ( string message ) : void
message string
return void
        protected virtual void OnOnError( string message )
        {
            OnErrorDelegate handler = OnError;
            if (handler != null) handler( parent, message );
        }