56. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/7/2019 12:47:36 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

56.1 Files compared

# Location File Last Modified
1 TMP_Integration_v4.6.zip\TMP Integration.zip\Integration\VA.TMP.Integration.VirtualMeetingRoom\PipelineSteps\Create 21 - ValidateXml.cs Tue May 21 19:08:26 2019 UTC
2 TMP_Integration_v4.6.zip\TMP Integration.zip\Integration\VA.TMP.Integration.VirtualMeetingRoom\PipelineSteps\Create 21 - ValidateXml.cs Fri Jun 7 11:52:55 2019 UTC

56.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 72
Changed 1 2
Inserted 0 0
Removed 0 0

56.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

56.4 Active regular expressions

No regular expressions were active.

56.5 Comparison detail

  1   using Syst em.Collect ions.Gener ic;
  2   using log4 net;
  3   using VA.T MP.Integra tion.Core;
  4   using VA.T MP.Integra tion.Virtu alMeetingR oom.StateO bject;
  5  
  6   namespace  VA.TMP.Int egration.V irtualMeet ingRoom.Pi pelineStep s.Create
  7   {
  8       /// <s ummary>
  9       /// Va lidate XML  step.
  10       /// </ summary>
  11       public  class Val idateXmlSt ep : IFilt er<Virtual MeetingRoo mCreateSta teObject>
  12       {
  13           pr ivate read only ILog  _logger;
  14  
  15           // / <summary >
  16           // / Default  constructo r
  17           // / </summar y>
  18           // / <param n ame="logge r">Logger. </param>
  19           pu blic Valid ateXmlStep (ILog logg er)
  20           {
  21                _logger  = logger;
  22           }
  23  
  24           // / <summary >
  25           // / Execute  the step.
  26           // / </summar y>
  27           // / <param n ame="state ">State ob ject.</par am>
  28           pu blic void  Execute(Vi rtualMeeti ngRoomCrea teStateObj ect state)
  29           {
  30                //Common .Schema.Va lidateSche ma("Virtua l Meeting  Room",
  31                //    st ate.Schema Path,
  32                  //      new List<s tring> { " http:// DOMAIN . EXT /vyopta/sc hemas/exch ange/Virtu alMeetingR oom/1.0" } ,
  33                //    ne w List<str ing> { "Vi rtualMeeti ngRoom.xsd " },
  34                //    st ate.Serial izedVirtua lMeetingRo om);
  35           }
  36       }
  37   }