FiftyOne.Foundation.Mobile.Detection.WebProvider.Dispose C# (CSharp) Method

Dispose() protected method

Disposes of the DataSet if one is available.
protected Dispose ( bool disposing ) : void
disposing bool /// True if the calling method is Dispose, false for the finaliser. ///
return void
        protected override void Dispose(bool disposing)
        {
            if (DataSet != null)
            {
                DataSet.Dispose();
            }
            base.Dispose(disposing);
        }