46. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/19/2019 1:19:23 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.

46.1 Files compared

# Location File Last Modified
1 VIRP_Build_6_Dec_2018_CG.zip\Registries VIRP Web Site\Web References\SoaServices Reference.Custom.cs Thu Jan 17 17:40:08 2019 UTC
2 VIRP_Build_6_Dec_2018_CG.zip\Registries VIRP Web Site\Web References\SoaServices Reference.Custom.cs Sat Jan 19 17:41:48 2019 UTC

46.2 Comparison summary

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

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

46.4 Active regular expressions

No regular expressions were active.

46.5 Comparison detail

  1   #pragma wa rning disa ble 1591
  2  
  3   namespace  VIRP_WEB.S oaServices  {
  4       using  System;
  5       using  System.Net ;
  6  
  7       /////  <remarks/>
  8       //[Sys tem.CodeDo m.Compiler .Generated CodeAttrib ute("Syste m.Web.Serv ices", "4. 6.1590.0") ]
  9       //[Sys tem.Diagno stics.Debu ggerStepTh roughAttri bute()]
  10       //[Sys tem.Compon entModel.D esignerCat egoryAttri bute("code ")]
  11         //[System. Web.Servic es.WebServ iceBinding Attribute( Name="CrsS ervicesSoa p", Namesp ace="http: // DNS ")]
  12       public  partial c lass CrsSe rvices : S ystem.Web. Services.P rotocols.S oapHttpCli entProtoco l {
  13           pr otected ov erride Web Request Ge tWebReques t(Uri uri)
  14           {
  15                HttpWebR equest req uest = (Ht tpWebReque st)base.Ge tWebReques t(uri);
  16                string k ey = Syste m.Configur ation.Conf igurationM anager.App Settings[" SecretKey" ];
  17  
  18                if (!str ing.IsNull OrEmpty(ke y))
  19                {
  20                    requ est.Header s.Add("Aut horization ", string. Format("Ba sic {0}",  key));
  21                }
  22  
  23                return r equest;
  24           }
  25       }
  26   }
  27  
  28   #pragma wa rning rest ore 1591