32. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/9/2016 1:47:05 PM Eastern Standard 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.

32.1 Files compared

# Location File Last Modified
1 TMP_CRM.zip\TMP_Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Delete 08 - SerializeVmr.cs Wed Nov 30 21:46:00 2016 UTC
2 TMP_CRM.zip\TMP_Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Delete 08 - SerializeVmr.cs Mon Dec 5 19:33:24 2016 UTC

32.2 Comparison summary

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

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

32.4 Active regular expressions

No regular expressions were active.

32.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   }