544. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2/1/2017 2:56:49 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.

544.1 Files compared

# Location File Last Modified
1 C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\ModernAndMobileApps\ModernSoapApp\Views TasksView.xaml.cs Tue Dec 20 19:51:47 2016 UTC
2 Wed Feb 1 19:56:49 2017 UTC

544.2 Comparison summary

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

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

544.4 Active regular expressions

No regular expressions were active.

544.5 Comparison detail

1   // ======= ========== ========== ========== ========== ========== ========== ==        
2   //        
3   //  This f ile is par t of the M icrosoft D ynamics CR M SDK Code  Samples.        
4   //        
5   //  Copyri ght (C) Mi crosoft Co rporation.   All righ ts reserve d.        
6   //        
7   //  This s ource code  is intend ed only as  a supplem ent to Mic rosoft        
8   //  Develo pment Tool s and/or o nline docu mentation.   See thes e other        
9   //  materi als for de tailed inf ormation r egarding M icrosoft c ode sample s.        
10   //        
11   //  THIS C ODE AND IN FORMATION  ARE PROVID ED "AS IS"  WITHOUT W ARRANTY OF  ANY        
12   //  KIND,  EITHER EXP RESSED OR  IMPLIED, I NCLUDING B UT NOT LIM ITED TO TH E        
13   //  IMPLIE D WARRANTI ES OF MERC HANTABILIT Y AND/OR F ITNESS FOR  A        
14   //  PARTIC ULAR PURPO SE.        
15   //        
16   // ======= ========== ========== ========== ========== ========== ========== ==        
17          
18   using Syst em;        
19   using Syst em.Collect ions.Gener ic;        
20   using Syst em.Collect ions.Objec tModel;        
21   using Syst em.IO;        
22   using Syst em.Linq;        
23   using Mode rnSoapApp. Common;        
24   using Mode rnSoapApp. Models;        
25   using Wind ows.Founda tion;        
26   using Wind ows.Founda tion.Colle ctions;        
27   using Wind ows.UI.Xam l;        
28   using Wind ows.UI.Xam l.Controls ;        
29   using Wind ows.UI.Xam l.Controls .Primitive s;        
30   using Wind ows.UI.Xam l.Data;        
31   using Wind ows.UI.Xam l.Input;        
32   using Wind ows.UI.Xam l.Media;        
33   using Wind ows.UI.Xam l.Navigati on;        
34   using Syst em.Xml.Lin q;        
35   using Micr osoft.Iden tityModel. Clients.Ac tiveDirect ory;        
36   using Samp le.ViewMod els;        
37          
38   // The Bas ic Page it em templat e is docum ented at h ttp://go.m icrosoft.c om/fwlink/ ?LinkId=23 4237        
39          
40   namespace  ModernSoap App.Views        
41   {        
42       /// <s ummary>        
43       /// A  basic page  that prov ides chara cteristics  common to  most appl ications.        
44       /// </ summary>        
45       public  sealed pa rtial clas s Tasks :  ModernSoap App.Common .LayoutAwa rePage        
46       {        
47           Ta sksViewMod el tasksVM ;        
48          
49           pu blic Tasks ()        
50           {        
51                this.Ini tializeCom ponent();        
52                tasksVM  = new Task sViewModel ();        
53          
54           }        
55          
56           pr ivate stri ng _access Token;        
57           pr otected ov erride voi d OnNaviga tedTo(Navi gationEven tArgs e)        
58           {        
59                base.OnN avigatedTo (e);        
60                _accessT oken = (st ring)e.Par ameter;                    
61                GetTasks Data();        
62           }        
63          
64          
65           // / <summary >        
66           // / Method t o bind Acc ounts Data  to Accoun ts ListVie w        
67           // / </summar y>        
68           pu blic async  void GetT asksData()        
69           {        
70              await task sVM.LoadTa sksData(_a ccessToken );        
71                this.lis tBoxTasks. ItemsSourc e = tasksV M.Tasks;        
72           }        
73          
74           // / <summary >        
75           // / Populate s the page  with cont ent passed  during na vigation.   Any saved  state is  also        
76           // / provided  when recr eating a p age from a  prior ses sion.        
77           // / </summar y>        
78           // / <param n ame="navig ationParam eter">The  parameter  value pass ed to        
79           // / <see cre f="Frame.N avigate(Ty pe, Object )"/> when  this page  was initia lly reques ted.        
80           // / </param>        
81           // / <param n ame="pageS tate">A di ctionary o f state pr eserved by  this page  during an  earlier        
82           // / session.   This wil l be null  the first  time a pag e is visit ed.</param >        
83           pr otected ov erride voi d LoadStat e(Object n avigationP arameter,  Dictionary <String, O bject> pag eState)        
84           {        
85           }        
86          
87           // / <summary >        
88           // / Preserve s state as sociated w ith this p age in cas e the appl ication is  suspended  or the        
89           // / page is  discarded  from the n avigation  cache.  Va lues must  conform to  the seria lization        
90           // / requirem ents of <s ee cref="S uspensionM anager.Ses sionState" />.        
91           // / </summar y>        
92           // / <param n ame="pageS tate">An e mpty dicti onary to b e populate d with ser ializable  state.</pa ram>        
93           pr otected ov erride voi d SaveStat e(Dictiona ry<String,  Object> p ageState)        
94           {        
95           }        
96       }        
97   }