/// <summary>
        /// Releases the unmanaged resources used by the <see cref="MediaControllerManager"/>.
        /// </summary>
        /// <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
        /// <since_tizen> 4 </since_tizen>
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                if (disposing)
                {
                    // To be used if there are any other disposable objects
                }
                _handle.Dispose();

                _disposed = true;
            }
        }