public void DemoMethodObject(DemoData data) { this._logger.LogInformation("Got object!"); this._logger.LogInformation(data?.GetType().FullName ?? "<NULL>"); this._objectHandle.Dispose(); if (data == null) { return; } this.Handle(data); }