// This function will be called when the app pool has problem public void Notify(string message) { if (call != null) { call.Call(message); } if (email != null) { email.Email(message); } if (sms != null) { sms.Sms(message); } }