Exemplo n.º 1
0
 public bool Equals(FileOutputReport other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.ContentType, ContentType) && Equals(other.LocalFilePath, LocalFilePath) && Equals(other.DisplayName, DisplayName));
 }
Exemplo n.º 2
0
 public void FileOutput(FileOutputReport report)
 {
 }
Exemplo n.º 3
0
 public void FileOutput(FileOutputReport report)
 {
     string text = "Wrote file:  " + report.ToString();
     addDetail().Text(text);
 }
Exemplo n.º 4
0
 public bool Equals(FileOutputReport other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.ContentType, ContentType) && Equals(other.LocalFilePath, LocalFilePath) && Equals(other.DisplayName, DisplayName);
 }
Exemplo n.º 5
0
        public void FileOutput(FileOutputReport report)
        {
            string text = "Wrote file:  " + report.ToString();

            addDetail().Text(text);
        }