211. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/5/2018 7:16:39 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.

211.1 Files compared

# Location File Last Modified
1 registries.zip\registries\Combined_registries_code\Registries VIRP Web Site\Web References\SoaServices Reference.Custom.cs Wed Jun 27 16:55:26 2018 UTC
2 registries.zip\registries\Combined_registries_code\Registries VIRP Web Site\Web References\SoaServices Reference.Custom.cs Wed Jun 27 17:54:37 2018 UTC

211.2 Comparison summary

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

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

211.4 Active regular expressions

No regular expressions were active.

211.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: // URL           . 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