BuildServerUploaderConsole.Processes.CopyInformation.PerformCopy C# (CSharp) Метод

PerformCopy() публичный Метод

public PerformCopy ( IResults results, string message ) : void
results IResults
message string
Результат void
        public void PerformCopy(IResults results, string message)
        {

            System.IO.File.Copy(SourceFile, DestinationFile, true);

            if(!string.IsNullOrEmpty(Namespace))
            {
                ReplaceNamespace(DestinationFile, Namespace);
            }

            results.WriteMessage(message);

        }