You create a Web Part. You need to display the number of visits to a SharePoint site collection in
a label named LblVisits. You write the following code segment. (Line numbers are included for
reference only.) 01 SPSecurity.RuntfithElevatedPrivileges (delegate() 02 { 03 try 04 { 05 06
LblVisits.Text = site.Usage.Visits.ToString () ; 07 } 08 finally 09 { 10 11 } 12 } 13 ); Which code
segment should you add at line 05?
A.
SPSite site – SPContext.GetContext (HttpContext.Current ).Site;
B.
SPSite site = new SPSite (SPContext.Current.Site.ID );
C.
SPSite site = SPContext.Current.Site ;
D.
SPSite site – SPControl.GetContextSite (HttpContext.Current );
Explanation: