10. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/14/2017 7:19:38 AM 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.

10.1 Files compared

# Location File Last Modified
1 TMP.CRM.zip\TMP.Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Create 20 - SerializeVmr.cs Thu Apr 13 20:16:50 2017 UTC
2 TMP.CRM.zip\TMP.Integration\VA.TMP.Integration.VIMT.VirtualMeetingRoom\PipelineSteps\Create 20 - SerializeVmr.cs Thu Apr 13 20:54:45 2017 UTC

10.2 Comparison summary

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

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

10.4 Active regular expressions

No regular expressions were active.

10.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.Cre ate
  7   {
  8       /// <s ummary>
  9       /// Se rialize VM R step.
  10       /// </ summary>
  11       public  class Ser ializeVmrS tep : Filt erBase<Vir tualMeetin gRoomCreat eStateObje ct>
  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 gRoomCreat eStateObje ct state)
  18           {
  19                state.Vi rtualMeeti ngRoom = n ew Virtual MeetingRoo mType
  20                {
  21                    Vers ion = "1.0 ",
  22                    Appo intmentId  = state.Ap pointmentI d.ToString (),
  23                    Pati entName =  state.Pati entId.ToSt ring(),
  24                    Prov iderName =  state.Pro viderId.To String(),
  25                    Meet ingRoomNam e = state. MeetingRoo mName,
  26                    Pati entPin = s tate.Patie ntPin,
  27                    Prov iderPin =  state.Prov iderPin,
  28                    Star tDate = st ate.Appoin tmentStart Date,
  29                    EndD ate = stat e.Appointm entEndDate ,
  30                    Misc Data = sta te.MiscDat aForReques t
  31                };
  32  
  33                state.Se rializedVi rtualMeeti ngRoom = S hared.Pipe lineUtilit ies.Serial izeInstanc e(state.Vi rtualMeeti ngRoom, ne w List<str ing> { "vm r" }, 
  34                      new List<s tring> { " http:// DNS     /vyopta/sc hemas/exch ange/Virtu alMeetingR oom/1.0" } );
  35           }
  36       }
  37   }