ReportingServicesBatchUpload.ReportingServicesUploader.ProcessWarnings C# (CSharp) Method

ProcessWarnings() private static method

private static ProcessWarnings ( ReportingServicesBatchUpload warnings ) : IList
warnings ReportingServicesBatchUpload
return IList
        private static IList<string> ProcessWarnings(ReportingServicesBatchUpload.ReportingServices2005WebService.Warning[] warnings)
        {
            IList<string> rc = new List<string>();
            if (warnings != null)
                foreach (var warning in warnings)
                    rc.Add(warning.Message);
            return rc;
        }