ZeroInstall.Publish.ImplementationUtils.IsDownloadSizeMissing C# (CSharp) Method

IsDownloadSizeMissing() private static method

private static IsDownloadSizeMissing ( [ retrievalMethod ) : bool
retrievalMethod [
return bool
        private static bool IsDownloadSizeMissing([NotNull] this RetrievalMethod retrievalMethod)
        {
            var downloadRetrievalMethod = retrievalMethod as DownloadRetrievalMethod;
            return downloadRetrievalMethod != null && downloadRetrievalMethod.Size == 0;
        }
        #endregion