12. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/22/2017 3:20:58 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.

12.1 Files compared

# Location File Last Modified
1 TMP_CIF.zip\TMP.Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Delete 08 - SerializeVmr.cs Thu Jun 22 18:36:20 2017 UTC
2 TMP_CIF.zip\TMP.Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Delete 08 - SerializeVmr.cs Thu Jun 22 19:40:08 2017 UTC

12.2 Comparison summary

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

12.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

12.4 Active regular expressions

No regular expressions were active.

12.5 Comparison detail

  1   using Syst em.Collect ions.Gener ic;
  2   using VA.T MP.Integra tion.Schem a.VirtualM eetingRoom ;
  3   using VA.T MP.Integra tion.VIMT. VirtualMee tingRoom.S tateObject ;
  4   using VRM. Integratio n.Serviceb us.Core;
  5  
  6   namespace  VA.TMP.Int egration.V IMT.Virtua lMeetingRo om.Pipelin eSteps.Del ete
  7   {
  8       /// <s ummary>
  9       /// Se rialize VM R step.
  10       /// </ summary>
  11       public  class Ser ializeDele teVmrStep  : FilterBa se<Virtual MeetingRoo mDeleteSta teObject>
  12       {
  13           // / <summary >
  14           // / Execute  the step.
  15           // / </summar y>
  16           // / <param n ame="state ">State ob ject.</par am>
  17           pu blic overr ide void E xecute(Vir tualMeetin gRoomDelet eStateObje ct state)
  18           {
  19                state.Vi rtualMeeti ngRoomDele te = new V irtualMeet ingRoomDel eteType
  20                {
  21                    Vers ion = "1.0 ",
  22                    Appo intmentId  = state.Ap pointmentI d.ToString (),
  23                    Misc Data = sta te.MiscDat aForReques t
  24                };
  25  
  26                state.Se rializedVi rtualMeeti ngRoomDele te = Share d.Pipeline Utilities. SerializeI nstance(st ate.Virtua lMeetingRo omDelete,  new List<s tring> { " vmr" }, 
  27                      new List<s tring> { " http:// DNS     /vyopta/sc hemas/exch ange/Virtu alMeetingR oom/1.0" } );
  28           }
  29       }
  30   }